About 4,810,000 results
Open links in new tab
  1. Open, save, or delete files on your Chromebook - Google Help

    Optional: On the left of the file name, use the drop down to change the file type. In the left column, choose where you'd like to save your file, such as Google Drive My Drive. Tip: If you use your …

  2. Create and save a file with JavaScript - Stack Overflow

    I have data that I want to write to a file, and open a file dialog for the user to choose where to save the file. It would be great if it worked in all browsers, but it has to work in Chrome. I w...

  3. How to do a "Save As" in vba code, saving my current Excel workbook ...

    One small point: using file format of xlWorkbookNormal saves the file as an Excel 97-2003 workbook. To save as a current .xlsx workbook you have to use xlOpenXMLWorkbook.

  4. How to change filename of a file downloaded with wget?

    This does not answer the question at all. The OUTPUT of the command will be saved to -o file, but the file itself will be downloaded with the same name and not "saved as".

  5. python - How do I write JSON data to a file? - Stack Overflow

    How do I write JSON data stored in the dictionary data to a file? f = open ('data.json', 'wb') f.write (data) This gives the error: TypeError: must be string or buffer, not dict

  6. How to edit/save a file through Ubuntu Terminal - Stack Overflow

    Jan 19, 2024 · This is quite a simple question: I just need to open a file (this filename is galfit.feedme). I can view the file with view galfit.feedme when I'm in the directory, but I do not know how to edit ...

  7. Upload files & folders to Google Drive

    When you open certain files, like PDFs in Chrome, you can save them directly to your Google Drive. This keeps your files organized and accessible across all your devices without downloading them to …

  8. How to Save File in storage folder with Original name?

    Mar 10, 2022 · I want to store an uploaded file with its original client name in the storage folder. What do I need to add or change in my code?Any help or recommendation will be greatly appreciated Here …

  9. Save and load MemoryStream to/from a file - Stack Overflow

    Dec 24, 2011 · I am serializing an structure into a MemoryStream and I want to save and load the serialized structure. So, How to Save a MemoryStream into a file and also load it back from file?

  10. Python Save to file - Stack Overflow

    In order to write into a file in Python, we need to open it in write w, append a or exclusive creation x mode. We need to be careful with the w mode, as it will overwrite into the file if it already exists.