Forrest logo
back to the GetFileInfo tool

getfileinfo:tldr:a903d

getfileinfo: Display the date and time a given file was last modified.
$ GetFileInfo -m ${filenamename}
try on your machine

The command "GetFileInfo -m ${filenamename}" is a command-line instruction that is used to retrieve the modification date of a specified file.

Here's a breakdown of the command:

  • "GetFileInfo" is the name of the command or program being executed.
  • "-m" is an option or flag that specifies that we want to retrieve the modification date of the file.
  • "${filenamename}" is a placeholder for the actual name of the file you want to check. You would need to replace "${filenamename}" with the actual file name.

For example, if you want to check the modification date of a file named "example.txt", you would use the command: "GetFileInfo -m example.txt".

When executed, the command will return the modification date of the specified file.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the GetFileInfo tool