I am working in C# and need to get a list of the files in a bucket. I am 
trying to determine the structure of the path. I tried the following and it 
did not find the directory.


            string Path = "/storage/v1/b/BucketName..appspot.com/o/";
            if (Directory.Exists(Path))
            {
                string[] fileEntries = Directory.GetFiles(Path);
                foreach (string FileName in fileEntries) 
                    litFiles.Text = FileName.ToString();


            }

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e70e151d-6a38-48b9-9945-74b21e0638bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • [google-appengine]... Richard Harden

Reply via email to