Returns a
CloudFile object that represents a file in this directory.
Namespace: Microsoft.WindowsAzure.Storage.File
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As CloudFileDirectory
Dim fileName As String
Dim returnValue As CloudFile
returnValue = instance.GetFileReference(fileName) |
Syntax
Visual Basic |
---|
Public Function GetFileReference ( _
fileName As String _
) As CloudFile |
C# |
---|
public CloudFile GetFileReference (
string fileName
) |
C++ |
---|
public:
CloudFile^ GetFileReference (
String^ fileName
) |
J# |
---|
public CloudFile GetFileReference (
String fileName
) |
JScript |
---|
public function GetFileReference (
fileName : String
) : CloudFile |
Parameters
- fileName
A String containing the name of the file.
Return Value
A
CloudFile object.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also