Jump to content

Placeholders in filenames ???


Recommended Posts

I want to write a tool to observe the correct working of a tv-recording application.

It creates filnames like this:

07-09 19-55-52_SAT 1 Austria_Austria TopNews.mpg

What I would need is a match-funktion like this to find out whether the application records or not:

$filename= "E:\capture\" & @MON &  "-" & @MDAY & " " & @HOUR & "-" & @MIN & $placeholder & ".mpg"

If FileExists($filename) Then
    $size = FileGetSize($filename)
    MsgBox(4096,"Alert", "Active Recording detected:" & $size & "MB")
Else
    MsgBox(4096,"Alert", "NO active Recording found.")
EndIf

The problem here: I dont know the name of the show, therefore I would like to replace $placeholder by placeholders such as * or ? in Windows©.

But neither in the helpfile nor in the forumsearch I could find something like that.

Maybe there exists something like the following for filenames, but I couldn't find anything useful:

Opt("WinTitleMatchMode", 2) ; 2=Match any substring in the title.

Link to comment
Share on other sites

  • Developers

have a look at FileFindFirstFile ( "filename" ) in the helpfile. it should allow you to retrieve the filename from the directory...

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...