` Create (deep) directories (Jeff Slarve ) - Icetips Article
Icetips - Templates, Tools & Utilities for Clarion Developers

Templates, Tools and Utilities
for Clarion Developers

Icetips Article

Back to article list   Search Articles     Add Comment     Printer friendly     Direct link  

Par2: Create (deep) directories
2003-02-04 -- Jeff Slarve
 
Here's something that I use. !============================================== DeepMkDir PROCEDURE (String pPath)!,Byte !============================================== !Copyright 2000 c Jeff Slarve MakePath CString(File:MaxFilePath) Ndx1 Long Ndx2 Long PathLen Long SavePath CString(File:MaxFilePath) ReturnVal Byte CODE ReturnVal = 0 PathLen = Len(Clip(pPath)) SavePath = LongPath() SetPath(pPath) If ErrorCode() If pPath[1:2] = '\\' !UNC Ndx2 = 3 Ndx2 = Instring('\', pPath,1,Ndx2) Ndx2 = Instring('\', pPath,1,Ndx2+1) else Ndx2 = 1 end Loop Ndx1 = Instring('\', pPath, 1, Ndx2) If NOT Ndx1 If Ndx2 <= PathLen Ndx1 = PathLen Ndx2 = Ndx1 else Break end end MakePath = pPath[1:Ndx1] SetPath(MakePath) If ErrorCode() If MkDir(MakePath) ReturnVal = True Message('Error creating: ' & | MakePath,'Error!',Icon:Exclamation) Break end end Ndx2 = Ndx1 + 1 end end SetPath(SavePath) Return ReturnVal


Today is April 25, 2024, 9:52 am
This article has been viewed 35107 times.



Back to article list   Search Articles   Add Comment   Printer friendly

Login

User Name:

Password: