Евгений81 Posted December 16, 2005 Report Share Posted December 16, 2005 Народ, срочно нужна помощь. Как в бат файле написать, что бы он проверял наличие файла(ов) в определенной папке(T:\post@mail.ru\*), если файлы есть продолжить выполнение, если папка пустая goto exit Например: @echo off C: cd\automail postie.exe -esmtp -host:mail.ellink.ru -from:porxov@porxov.ru -to:post@mail.ru -nomsg -s:Тест -dir:T:\post@mail.ru\* move T:\post@mail.ru\*.* T:\Sent\ :end exit Я так понимаю, что то типа: IF [NOT] EXIST T:\post@mail.ru\*.* А как сделать, что бы он понимал False-True??? Link to comment Share on other sites More sharing options...
yuriks Posted December 16, 2005 Report Share Posted December 16, 2005 IF [NOT] EXIST T:\post@mail.ru\*.* <команда> <команда> может бить "move T:\post@mail.ru\*.* T:\Sent\" а может бить и goto <метка> где будет набор комманд. Link to comment Share on other sites More sharing options...
Q-Q Posted December 16, 2005 Report Share Posted December 16, 2005 Евгений81: Причём здесь Интернет? Link to comment Share on other sites More sharing options...
Евгений81 Posted December 19, 2005 Author Report Share Posted December 19, 2005 IF [NOT] EXIST T:\post@mail.ru\*.* <команда> <команда> может бить "move T:\post@mail.ru\*.* T:\Sent\" а может бить и goto <метка> где будет набор комманд. Блин, он маску *.* не понимает :D , если конкретно имя файла указывать, то все работает Евгений81: Причём здесь Интернет? Прошу прощения, необратил внимания. Прсто батник пишу для отправки e-mail :) Link to comment Share on other sites More sharing options...
yuriks Posted December 19, 2005 Report Share Posted December 19, 2005 тогда можно так : type T:\post@mail.ru\*.* > nul if errorlevel 1 goto l1 goto :end :l1 <набор команд> :end Link to comment Share on other sites More sharing options...
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