FileInstall如何包含文件夹下的所有文件
本帖最后由 qq4045728 于 2009-7-27 20:54 编辑FileInstall("d:\a\","d:\b\") 像这样直接运行可以将a下面的所有文件复制到 b文件夹下。但是编译就出错了。
d:\a\这里出了问题。 主要问题就是如何用FileInstall 包含a文件夹下的所有文件? 只能一个个 FileInstall 文件,不能直接复制文件夹。 文件超多的话可以试试先rar压缩,然后FileInstall 压缩包自解压,没试过 dirinstall 本帖最后由 afan 于 2009-7-27 13:01 编辑
刚测试了,用 WinRAR 打包一个文件夹为自解压格式文件,然后在AutoIt3里面 FileInstall 这个文件,并 Runwait 这个文件,其它照旧。 很成功~
至于LS说的那个UDF,据说都不成功吧 FileInstall ( "source", "dest" [, flag] )source
The source path of the file to compile. This must be a literal string; it cannot be a variable. It can be a relative path (using .\ or ..\ in the path).
dest
The destination path of the file with trailing backslash if only the directory is used. This can be a variable.
flag
this flag determines whether to overwrite files if they already exist:
0 = (default) do not overwrite existing files
1 = overwrite existing files
源路径必须为有效的文件,不能使用变量,也不能使用文件夹名称。 牛人,学习了! 还得用其他软件配合下。 呵呵,学习了解了。。 xzcxzhjhgj
页:
[1]