I have create a folders using google drive API on google drive and able to search folders and files created by API App. Inside this folder i created a folder and file manually on google drive. Now i can not able to find the file or folder that i created manually using driveService.Files.List() method. There is any way to access manually create file or folder by google drive API. The file search code is
var request = service.Files.List();
request.Q = "mimeType='application/vnd.google-apps.folder' and trashed=false";
request.Spaces = "drive";
var result = request.Execute();
foreach (var file in result.Files)
{
string fileid = file.Id;
string filename = file.Name;
}