从 FileOpenDialog() 处理多个文件名
我正在编写一个图片编辑程序,并使用以下代码片段来选择文件:
$var = FileOpenDialog("",@DesktopDir,"Images (*.jpg;*.bmp;*.png)",1+4)
$var = StringReplace($var, "|", @CRLF)
当我选择多个文件时,所有文件名都存储在 $var
中,并用 |
分隔象征。我用换行符替换该符号。但我需要为所有文件名运行该程序,并且我不知道如何将各种文件名与变量分开。因此,如果我选择多个文件,我的程序就会停止。
I am writing a picture editing program and am using the below snippet to choose the files:
$var = FileOpenDialog("",@DesktopDir,"Images (*.jpg;*.bmp;*.png)",1+4)
$var = StringReplace($var, "|", @CRLF)
When I select multiple files all the file names are stored in $var
separated by the |
symbol. I replace that symbol with a newline character. But I need to run the program for all the filenames and I can't figure out how to separate the various filenames from the variable. So my programs stops if I select multiple files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对我来说,结果如下所示:
所以它是:
等。
For me the results look like this:
So it's:
etc.