Hello every one
how can i list file links in my shared folder on Google drive
if it is not possible
how can i download all files found on the folder
thanks in advance
Hello every one
how can i list file links in my shared folder on Google drive
if it is not possible
how can i download all files found on the folder
thanks in advance
Hello,
Not familiar at all with Google and its cloud service ...
You can always test following macro to loop through files in folder and get a list :
Sub LoopThroughFiles ()
Dim oFSO As Object
Dim oFolder As Object
Dim oFile As Object
Dim i As Integer
Set oFSO = CreateObject("Scripting.FileSystemObject")
' Adjust the Folder to yous specific situation ''''''
Set oFolder = oFSO.GetFolder("C:\VBA Folder")
For Each oFile In oFolder.Files
Cells(i + 1, 1) = oFile.Name
i = i + 1
Next oFile
End Sub
Display More
Hope this will help
thanks
but am talking about files on gdrive
not in my hard drive
Hello,
In order to get the Google Drive path, take a look at following :
https://stackoverflow.com/ques…-of-google-drive-document
Hope this will help
but this is not a vba language !!!
Don’t have an account yet? Register yourself now and be a part of our community!