public File GetOwnedFolderById(
string id
)
Public Function GetOwnedFolderById (
id As String
) As File
Dim instance As DriveClient
Dim id As String
Dim returnValue As File
returnValue = instance.GetOwnedFolderById(id)
public:
File^ GetOwnedFolderById(
String^ id
)
member GetOwnedFolderById :
id : string -> File
No code example is currently available or this language may not be supported.
[Missing <param name="id"/> documentation for "M:DevCase.ThirdParty.Google.Drive.DriveClient.GetOwnedFolderById(System.String)"]
No code example is currently available or this language may not be supported.
Dim client As New DriveClient("C:\GoogleSecrets.json", "yourmail@gmail.com", DriveScopes.Full Or DriveScopes.Metadata)
Dim credential As UserCredential = client.Authorize()
Dim folder As Google.Apis.Drive.v3.Data.File) = client.GetOwnedFolderById(" Folder Id. ")
Dim sb As New Global.System.Text.StringBuilder()
With sb
.AppendLine(String.Format("Id: {0}", folder.Id))
.AppendLine(String.Format("Name: {0}", folder.Name))
.AppendLine(String.Format("Size: {0}", folder.Size))
.AppendLine(String.Format("Date Created: {0}", folder.CreatedTime?.ToString()))
.AppendLine(String.Format("Url: {0}", If(folder.WebContentLink, folder.WebViewLink)))
.AppendLine(String.Format("Parent Folder Ids: {0}", String.Join(",", If(folder.Parents, {"nul"}))))
End With
Console.WriteLine(sb.ToString())
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.