Total commander’ом в ноль скопировать можно?
какие есть проги копирования в NULL?
с помощью total commander’a это можно сделать как нибудь?
Расскажите пожалуйста, что такое копирование в NULL ?
А f5 nul не работает?
это когда ты копируешь в «никуда»
есть у тебя диск, надо проверить на читаемость, но 700 метров на винте нема
вот он и копирует их в ноль, и если прочитать не может-то ругается, а если может, то успешно копирует в ноль
я так понимаю все это копирование идет в оперативку, из которой по мере скачивания данные удаляются и копируются дальше новые: хотя точно я не уверен что именно в оперативку копирование идет
Для проверки читаемости сидюков специальные проги есть.
нет
сидюки я к примеру сказал
а у меня получилось. что я не правильно сделал?
интересно
а версия какая?
6.03
это не должно зависить от версии.
может ты копируешь в null ?
а надо в nul.
я так понимаю все это копирование идет в оперативку, из которой по мере скачивания данные удаляются и копируются дальше новые: хотя точно я не уверен что именно в оперативку копирование идет
TC 6.03а
F5
в строке copy files to ввожу:
nul
—
выдает ошибку
copy from c/folder to c:/nul
cannot write, please remove write protection
в общем я так понял только far справляется с этим
у меня тоже работает в ТС.
.
И у меня работает в ТС. Прекрасно работает!
Да, кстати. Леонардо как всегда нагнал. Оно действительно читает с диска, но никуда не пишет.
оно отлично работает в тц если копировать туда файлы
каталоги оно так не может копировать, типа не может создать каталоги на устройстве nul
поэтому перед копированием нужно нажимать ctrl-b в корне сидюка и все будет ок
Аналогично!
ага, понятно
спасибо
Is there a /dev/null on Windows?
What is the equivalent of /dev/null on Windows?
7 Answers 7
I think you want NUL , at least within a command prompt or batch files.
doesn’t create a file.
(I believe the same is true if you try to create a file programmatically, but I haven’t tried it.)
In PowerShell, you want $null :
According to this message on the GCC mailing list, you can use the file «nul» instead of /dev/null:
(Credits to Danny for this code; copy-pasted from his message.)
You can also use this special «nul» file through redirection.
NUL in Windows seems to be actually a virtual path in any folder. Just like .. , . in any filesystem.
Use any folder followed with NUL will work.
have the same effect as /dev/null on Linux.
This was tested on Windows 7, 64 bit.
Jon Skeet is correct. Here is the Nul Device Driver page in the Windows Embedded documentation (I have no idea why it’s not somewhere else. ).
Here is another:
NUL works programmatically as well. E.g. the following:
works as expected without creating a file. (MSVC++ 12.0)
If you need to perform in Microsoft Windows the equivalent of a symlink to /dev/null in Linux you would open and administrator’s cmd and type:
For files:
Or, for directories:
This will keep the file/direcotry always at 0 byte, and still return success to every write attempt.
You have to use start and $NUL for this in Windows PowerShell:
Type in this command assuming mySum is the name of your application and 5 10 are command line arguments you are sending.
The start command will start a detached process, a similar effect to & . The /B option prevents start from opening a new terminal window if the program you are running is a console application. and NUL is Windows’ equivalent of /dev/null . The 2>&1 at the end will redirect stderr to stdout, which will all go to NUL .
Not the answer you’re looking for? Browse other questions tagged windows or ask your own question.
Linked
Related
Hot Network Questions
Subscribe to RSS
To subscribe to this RSS feed, copy and paste this URL into your RSS reader.
site design / logo © 2021 Stack Exchange Inc; user contributions licensed under cc by-sa. rev 2021.4.16.39093
By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.