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

    You can open and save many types of files on your Chromebook, like documents, PDFs, images, and media. Learn which types of files are supported on your Chromebook. Your Chromebook's hard drive …

  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. Create, view, or download a file - Google Help

    Save a file When you're online, Google automatically saves your changes as you type. You don't need a save button. Once offline access is turned on for Docs, Sheets, Slides, or Forms, changes will save …

  4. 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.

  5. 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 ...

  6. How to save a file in Vim without quit - Stack Overflow

    May 18, 2016 · I know the basic command ESC + SHIFT ZZ and another, ESC + :wq ENTER, but I don't want to quit Vim. I want to save the file and the file should remain open in Vim.

  7. Save file to specific folder with curl command - Stack Overflow

    Oct 30, 2019 · In a shell script, I want to download a file from some URL and save it to a specific folder. What is the specific CLI flag I should use to download files to a specific folder with the curl command,...

  8. How to save a mat file in another directory in matlab

    You're using save wrong. The first parameter is the filename you want to call the MAT file and second parameter and onwards are the variables you want to save. Do you want to save the entire …

  9. 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.

  10. How do I save a file using the response header filename with cURL?

    182 -J/--remote-header-name is the option you want. You use -J in conjunction with -O, which makes curl use the file name part from the URL as its primary way to name the output file and then if there is …