FroVN Posted August 29, 2018 Posted August 29, 2018 Are there any ways to upload file txt to mediafire or google drive? if yes can get me an example or something please, Thanks
Moderators Melba23 Posted August 29, 2018 Moderators Posted August 29, 2018 Moved to the appropriate forum, as the AutoIt Example Scripts forum very clearly states: Quote Share your cool AutoIt scripts, UDFs and applications with others. Do not post general support questions here, instead use the AutoIt Help and Support forums. Moderation Team Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
caramen Posted August 29, 2018 Posted August 29, 2018 (edited) Well if your drive is mapped to the current session you can just use FileMove DirMove To the apropriate folder. Default folder name is : C:\Users\USER-NAME\OneDrive Edit : Edited August 29, 2018 by caramen My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki
Skeletor Posted August 29, 2018 Posted August 29, 2018 First download Google Drive for your PC. https://www.google.com/drive/download/ Run the installation and setup to point to a local folder. Next, in your Auto It script. Local $GoogleDriveLocation = ("C:\temp\") Local $name_of_file = "file.txt" FileWrite($GoogleDriveLocation & $name_of_file,"Hello World!" & @CRLF) FileWriteLine($GoogleDriveLocation & $name_of_file,"Hello World again" & @CRLF) FileWriteLine($GoogleDriveLocation & $name_of_file,"Hello World and again" & @CRLF) Google drive will automatically sync your folder with the cloud based Drive. Kind RegardsSkeletor "Coffee: my defense against going postal." Microsoft Office Splash Screen | Basic Notepad Program (Beginner) | Transparent Splash Screen | Full Screen UI
FroVN Posted August 29, 2018 Author Posted August 29, 2018 Thanks your guy, i will try, Ah a little more, i have sreached and saw google drive provide API that i can use to upload : https://developers.google.com/drive/api/v3/simple-upload And it's like this : POST https://www.googleapis.com/upload/drive/v3/files?uploadType=media HTTP/1.1 Content-Type: image/jpeg Content-Length: [NUMBER_OF_BYTES_IN_FILE] Authorization: Bearer [YOUR_AUTH_TOKEN] So how i can make POST method like that? , and Content-Type,Content-Lenght,... I want to have challenge and this is
caramen Posted August 30, 2018 Posted August 30, 2018 (edited) 15 hours ago, FroVN said: I want to have challenge and this is Go on, try, come back with non working script. Edited August 30, 2018 by caramen My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now