Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all,
i've a folder path with regular expression in that path.i want to check whether that folder is in existance.how can i move with this?

eg:
VB
Dim folder
folder="C:\*folder* 'path with regularexpression"
if(filesystem.FolderExists(folder))
filesystem.DeleteFolder(folder)


Thank you in advance
Posted
Updated 3-Feb-12 9:23am
v3

1 solution

Hi,

Try like this,

C#
var dirs = from dir in 
           Directory.EnumerateDirectories(dirPath, "C:\\*folder*",
           SearchOption.AllDirectories)
           select dir;


it will return you the folders that matches the pattern.
 
Share this answer
 
v3
Comments
Jijesh Balakrishnan b 5-Feb-12 22:39pm    
it is giving the following error on this statement.
Microsoft VBScript compilation error: Expected end of statement
could you please tell me what is this "from dir in" statement?
Jaganathan Bantheswaran 6-Feb-12 0:01am    
Please have a look at http://msdn.microsoft.com/en-us/library/dd383462.aspx

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900