I am currently trying to use the CloudDrive (Powershell) sample that comes with the Azure SDK to list the blobs I have stored. I'm getting an error fairly early in the process, and I figure there must be something I'm doing wrong - I just don't know how to debug this kind of problem...
I have followed a great tutorial regarding logging, and also watched the "How To" video and both of them breeze right past the area where I'm having trouble.
It seems pretty straight forward, you run the MountDrive Powershell script which by default will look at the development store on the local machine, and this script will mount two new drives for you, a Blob and a Queue drive.
Then you can just perform a "dir Blob:
" or a "dir Queue:
" and in the links above, the required information is shown. In my case, dir Queue:
works just fine, but dir Blob:
yields the following Powershell error:
....\Azure\samples\CloudDrive\scripts> dir Blob:
Get-ChildItem : The specified container name ".." is not valid!Please choose a name that conforms to the naming conventions for containers!
At line:1 char:4
+ dir <<<< Blob:
+ CategoryInfo : NotSpecified: (:) [Get-ChildItem], ArgumentException
+ FullyQualifiedErrorId : System.ArgumentException,Microsoft.PowerShell.Commands.GetChildItemCommand
Now the "problem" container name being referred to above - ".." - looks suspiciously like the "dot" and "two dots" listed in any drive you may perform a "dir" operation on. I'm not sure it has anything to do with that, but in all online demos I've seen, people get a list of their Blob folders etc, I just get this error, and I don't know how to fix it.
Any help greatly appreciated...
Update: I am indeed using the Windows 7 RC with Powershell pre-installed. If this version is in fact buggy, then how do I go about getting a previous version on there...if at all possible?
Thanks,
Rob G