0
要件があります。コードを使用して、コンソールアプリケーションからgoogle drive
にファイルを挿入します。コンソールアプリケーションから特定のフォルダにあるGoogleドライブにファイルをアップロードすることはできますか?
私はいくつかの記事を読んだが、分かりませんでした。助けてください...
要件があります。コードを使用して、コンソールアプリケーションからgoogle drive
にファイルを挿入します。コンソールアプリケーションから特定のフォルダにあるGoogleドライブにファイルをアップロードすることはできますか?
私はいくつかの記事を読んだが、分かりませんでした。助けてください...
あなたが探しているものがあります。また、少なくともここで質問をする前にいくつかのコードを試してください。
class Program
{
// If modifying these scopes, delete your previously saved credentials
// at ~/.credentials/drive-dotnet-quickstart.json
static string[] Scopes = { DriveService.Scope.DriveReadonly };
static string ApplicationName = "Drive API .NET Quickstart";
static void Main(string[] args)
{
UserCredential credential;
using (var stream =
new FileStream("client_secret.json", FileMode.Open, FileAccess.Read))
{
string credPath = System.Environment.GetFolderPath(
System.Environment.SpecialFolder.Personal);
credPath = Path.Combine(credPath, ".credentials/drive-dotnet-quickstart.json");
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
Scopes,
"user",
CancellationToken.None,
new FileDataStore(credPath, true)).Result;
Console.WriteLine("Credential file saved to: " + credPath);
}
// Create Drive API service.
var service = new DriveService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = ApplicationName,
});
// Define parameters of request.
FilesResource.ListRequest listRequest = service.Files.List();
listRequest.PageSize = 10;
listRequest.Fields = "nextPageToken, files(id, name)";
// List files.
IList<Google.Apis.Drive.v3.Data.File> files = listRequest.Execute()
.Files;
Console.WriteLine("Files:");
if (files != null && files.Count > 0)
{
foreach (var file in files)
{
Console.WriteLine("{0} ({1})", file.Name, file.Id);
}
}
else
{
Console.WriteLine("No files found.");
}
Console.Read();
}
}
さらに、次のリンクを確認してください。
https://developers.google.com/drive/v3/web/quickstart/dotnet
コード付きです。 –
いくつかのコードを書く必要があります。 –