Guest User

Untitled

a guest
Apr 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. var selector = new FileSelector("mtime >= 2009-05-01 and mtime <= 2009-05-31");
  2. var files = selector.SelectFiles("c:\my Documents");
  3.  
  4. var selector = new FileSelector("mtime >= 2009-05-01 and mtime <= 2009-05-31 and size > 100k");
  5. var files = selector.SelectFiles("c:\my Documents");
  6.  
  7. var selector = new FileSelector("(name = *.doc) and (mtime >= 2009-05-01) and (mtime <= 2009-05-31) and (size > 100k)");
  8. var files = selector.SelectFiles("c:\my Documents");
Add Comment
Please, Sign In to add comment