首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > VFP >

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

2012-07-03 
VFP WinExec 路径文件名有空格问题!Declare Integer WinExec in kernel32 string, integerBATTRIB -S -H

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)

热点排行