DriveClientDeleteFolder(String) Method
Permanently deletes a existing folder (including all its files inside) from the Google Drive of the user account.
Namespace: DevCase.ThirdParty.Google.DriveAssembly: DevCase.net48.ThirdParty.GoogleServices (in DevCase.net48.ThirdParty.GoogleServices.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public string DeleteFolder(
string folderId
)
Public Function DeleteFolder (
folderId As String
) As String
Dim instance As DriveClient
Dim folderId As String
Dim returnValue As String
returnValue = instance.DeleteFolder(folderId)
public:
String^ DeleteFolder(
String^ folderId
)
member DeleteFolder :
folderId : string -> string
No code example is currently available or this language may not be supported.
- folderId String
-
The identifier of the existing folder to delete.
String
The resulting
String.
This is a code example.
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)
Dim credential As UserCredential = client.Authorize()
Dim result As String = DeleteFolder(" Existing Folder Id. ")
Console.WriteLine(result)
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.