StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
LS.C
1 void LS(const char *path=0)
2 {
3 if (!path || !path[0]) path = gSystem->WorkingDirectory();
4 TString mypath(path);
5 
6 
7 void *dir = gSystem->OpenDirectory(mypath);
8 const char *name;
9 int n = 0;
10  while ((name = gSystem->GetDirEntry(dir))) {
11  TString full(mypath);
12  full+="/"; full+=name;
13  Long_t id,size,flags,modtime;
14  gSystem->GetPathInfo(full, &id,&size,&flags,&modtime);
15  printf("%10d - %s\n",size,name);
16  n++;
17  }
18 }