Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Renaming Directories
Message
 
To
04/08/2006 10:04:11
Jay Johengen
Altamahaw-Ossipee, North Carolina, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01142971
Message ID:
01142979
Views:
19
>>Is there a command within FoxPro to rename an entire directory?
>
>Update: Do NOT use RD. It's something else. Looking it up now. Ok, this is what I found: http://www.computerhope.com/renamehl.htm
>
>You can use the DOS command RD from within your code.

Maybe this?

LPARAMETERS tcoldname, tcnewname
DECLARE INTEGER MoveFile IN Win32API STRING @lpcurrentname, STRING @lpnewname
LOCAL lcoldname, lcnewname, llresult
lcoldname = tcoldname
lcnewname = tcnewname
llresult = (MoveFile(@lcoldname, @lcnewname) # 0)


or this???

LPARAMETERS tcoldname, tcnewname
oFSO = CREATEOBJECT("Scripting.FileSystemObject")
oFolder = oFSO.GetFolder(tcoldname)
oFolder.Name = tcnewname
ICQ 10556 (ya), 254117
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform