About 57 results
Open links in new tab
  1. How can I create an empty file at the command line in Windows?

    674 How can I create an empty file at the DOS/Windows command-line? I tried: copy nul > file.txt But it always displays that a file was copied. Is there another method in the standard cmd? It should be a …

  2. java - How do I create a file and write to it? - Stack Overflow

    Java NIO If you already have the content you want to write to the file (and not generated on the fly), the java.nio.file.Files addition in Java 7 as part of Java NIO provides the simplest and most efficient way …

  3. How to create a file in Linux from terminal window? [closed]

    How to create a text file on Linux: Using touch to create a text file: $ touch NewFile.txt Using cat to create a new file: $ cat NewFile.txt The file is created, but it's empty and still waiting for the input from …

  4. unix - Create text file and fill it using bash - Stack Overflow

    Jan 11, 2011 · I need to create a text file (unless it already exists) and write a new line to the file all using bash. I'm sure it's simple, but could anyone explain this to me?

  5. Create an empty file on the commandline in windows (like the linux ...

    An easy way to replace the touch command on a windows command line like cmd would be: type nul > your_file.txt This will create 0 bytes in the your_file.txt file. This would also be a good solution to use …

  6. Create New Folder in Windows 10 | Tutorials - Ten Forums

    Jan 28, 2024 · Create New Folder in Windows 10 How to Create a New Folder in Windows 10 Published by Shawn Brink Category: General Tips 28 Jan 2024 How to Create a New Folder in Windows 10 A …

  7. c - how to create a file using windows API? - Stack Overflow

    I want to create a text file using windows API. I studied about HANDLE CreateFile( LPCTSTR lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES …

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

  9. python - Create a file if it doesn't exist - Stack Overflow

    Mar 5, 2016 · I'm trying to open a file, and if the file doesn't exist, I need to create it and open it for writing:

  10. open() in Python does not create a file if it doesn't exist

    Jun 3, 2010 · Put w+ for writing the file, truncating if it exist, r+ to read the file, creating one if it don't exist but not writing (and returning null) or a+ for creating a new file or appending to a existing one.