Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8883635
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:51:45+00:00 2026-06-14T20:51:45+00:00

I have text file in same folder as where my batch file is. so

  • 0

I have text file in same folder as where my batch file is.

so I want my batch file to read content of the text file and depending on content of that text file I want it to perform action.

example if text file contains “Hello World” then do like Start VLC
if it doesn’t contain Hello World then do something else.

Text will update on it’s own.

here is my batch code so far, it can output the text from text file on screen.

@echo off
for /f "tokens=*" %%a in (log.txt) do call :processline %%a

pause
goto :eof

:processline
echo line=%*

goto :eof

:eof
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T20:51:47+00:00Added an answer on June 14, 2026 at 8:51 pm

    You should use either FIND or FINDSTR. Type HELP FIND and HELP FINDSTR from a command prompt to get documentation. FIND is very simple and reliable. FINDSTR is much more powerful, but also tempermental. See What are the undocumented features and limitations of the Windows FINDSTR command? for more info.

    You don’t care about the output of either command, so you can redirect output to nul.

    Both commands set ERRORLEVEL to 0 if the string is found, and 1 if the string is not found. You can use the && and || operators to conditionally execute code depending on whether the string was found.

    >nul find "Hello World" log.txt && (
      echo "Hello World" was found.
    ) || (
      echo "Hello World" was NOT found.
    )
    
    >nul findstr /c:"Hello World" log.txt && (
      echo "Hello World" was found.
    ) || (
      echo "Hello World" was NOT found.
    )
    

    You could also test ERRORLEVEL in an IF statement, but I prefer the syntax above.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to read a text file in the same folder with my java
I have Text file that contains data separated with a comma , . How
I have a text file that I want to edit by rewriting it to
I have program proba2.exe and file text.txt in same folder, when I set command
I have a text file in the same folder as my matlab code called
I have a text file in the same folder as the script I'm trying
I have a php script that writes a text file to the same directory
I'm creating a small program that will read a text file, which contains a
I have text file with some stuff that i would like to put into
I'm working in Visual Studio 2005 and have added a text file that needs

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.