how to make this real using just a given Url and whether it's possible or not, idk?
what i am trying to do :
Creating Folder in specific place in the Drive according to a String..
this String consist from 3 parts (every part represents folder easy!)
for instance, mystring = "Analyse_General_Theory" ,
the path in Drive should be like :
Analyse/General/Theory
so :
my Imagination to Solution would be like that :)
passing my stringUrl to Build Request then Posting my Folder
stringUrl = "https://CompanyDomin.sharepoint.com/sites/mySite/SharedFolders/Analyse/General/Theory"
then
await graphClient.Request(stringUrl).PostAsync(myLastFolder) !!!
so that would be the result !
Analyse/General/Theory/myLastFolder
is there somethig like that ? or maybe similar to this Approach ?