LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

create a folder for today

simplest solution is.. if you are trying to create a file inside the folder, then attempt to create the file (using open/create file function).  If error occurs, then create the folder and then the file.

Or else.. use the List Directory (or similar) function to get a list of current directories, search the returned array for the folder name.  If it exists, creat the file else creat the folder and then the file.

Hope that makes sense.
Vikas


Message Edited by Vikas K on 04-01-2008 12:22 PM
Message 11 of 13
(866 Views)
more simple:
Use the function File/Directory info in the "filefunctions (advanced)" palette. If it returns an error, the path does not exist. Connect error out to the selector of a case structure. This is how it is done in the VI you are missing. (It additionally checks if the file is in a llb, but this is not necessary for a folder.)
 
even more simple:
Just ignore the error of "create folder.vi" (connect it to "Clear errors.vi" or to an empty sequence structure).
 
Greetings
shb
Message 12 of 13
(857 Views)
great!!!
all advices are great..
it is working now!

Best regards,
Krispiekream
0 Kudos
Message 13 of 13
(839 Views)