当前位置: 代码迷 >> VFP >> VFP WinExec 路径文件名有空格有关问题
  详细解决方案

VFP WinExec 路径文件名有空格有关问题

热度:3801   发布时间:2013-02-26 00:00:00.0
VFP WinExec 路径文件名有空格问题!
Declare Integer WinExec in kernel32 string, integer 
B="ATTRIB -S -H -R C:\Documents and Settings\Administrator\「开始」菜单\程序\附件\AATT.TXT"
MyCommand=B 
= WinExec (MyCommand,0) 

我尝试这样去改变文件的属性,我用了各位大侠的以前教我的方法,都不能改变有路径文件名有空格的文件的属性,唯有再次请教给位大侠了,谢谢!

------解决方案--------------------------------------------------------

B=[ATTRIB -S -H -R "C:\Documents and Settings\Administrator\「开始」菜单\程序\附件\AATT.TXT"]

------解决方案--------------------------------------------------------
Declare Integer WinExec in kernel32 string, integer 
MyCommand='ATTRIB -S -H -R "C:\Documents and Settings\Administrator\「开始」菜单\程序\附件\AATT.TXT"' 
= WinExec (MyCommand,0)