明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 392|回复: 3

[提问] 那位看下什么问题,把ZYtemp.dll,改ZY.dll

[复制链接]
发表于 2024-8-21 21:19:55 | 显示全部楼层 |阅读模式
检测到ZY.dll时,没有检测到ZYtemp.dll时直接加载ZY.dll
同时检测到时,删除ZY.dll,再把ZYtemp.dll重命名为Y.dll并加载
(setq FileName (findfile "ZY.dll"))
  (setq tempFileName (findfile "ZYtemp.dll"))
  (if (/= FileName nill)
    (progn
      (if (= tempFileName nill)
        (command "NetLoad" FileName)
        (progn
          (if (= (vl-file-delete FileName) nill)
            (command "NetLoad" FileName)
            (progn
              (vl-file-rename  tempFileName FileName)
              (command "NetLoad" FileName)
              )
            )
          )
        )
      )
    )


发表于 2024-8-21 22:55:54 | 显示全部楼层
nil 或者 null 没有nill
  1. (setq FileName (findfile "ZY.dll"))
  2. (setq tempFileName (findfile "ZYtemp.dll"))
  3. (if FileName
  4.         (if tempFileName
  5.                 (progn
  6.                         (vl-file-delete FileName)
  7.                         (vl-file-rename tempFileName FileName)
  8.                         (command "NetLoad" FileName)
  9.                 )
  10.                 (command "NetLoad" FileName)
  11.         )
  12. )
 楼主| 发表于 2024-8-22 12:57:31 | 显示全部楼层
飞雪神光 发表于 2024-8-21 22:55
nil 或者 null 没有nill

调试时发现在删除代码nil,为什么?
我用的以下代码

(setq FileName (findfile "ZY.dll"))
(setq tempFileName (findfile "ZYtemp.dll"))
(if (/= FileName nil)
   (if (/= tempFileName nil)
     (progn
       (vl-file-delete FileName)
       (vl-file-rename  tempFileName FileName)
       (command "NetLoad" FileName)
       )
     (command "NetLoad" FileName)
     )
  )

发表于 2024-8-22 13:00:41 | 显示全部楼层
离碎 发表于 2024-8-22 12:57
调试时发现在删除代码nil,为什么?
我用的以下代码

/= nil  就是 t  FileName  tempFileName 这两个变量有了值就相当于t了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 09:41 , Processed in 0.159325 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表