Sample of fake .NFO file

Support for Windows users
Post Reply
Kallita
Posts: 7
Joined: 29 Dec 2019, 20:55

Sample of fake .NFO file

Post by Kallita »

File name = Mortuary.nfo

Title: Mortuary
IMDB: http://www.imdb.com/title/tt0087746/
Year: 1983
Genre: Horror
Company:

Rars: 100mb x 36 (DVD-5)
Parts: 8% Recovery

Plot: Christie Parson has constant nightmares of her father's death whom died in a swimming pool. Christie's mother thinks it was an accident, but Christie believes in was murder. Christie then sees a sinister hooded figure following her and harassing her. But still nobody believes her, except her boyfriend. Who is this hooded person actually?

Important Notes:
Uncut Version
1.78:1 Anamorphic Widescreen
DD2.0
Extras: Trailer

From,
Unit_731

Comments? Suggestions? Hatemail? Drugs?
Send them to: Unit731usenet [at] [gmaaaiiilll] [dot/] [com/]
User avatar
rednoah
The Source
Posts: 24017
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Sample of fake .NFO file

Post by rednoah »

Well, that looks like a standard NFO file to me. It just happens to be the human-readable kind. I guess that mean you want to separate these kinds of NFO files from machine-readable XML NFO files that start with <nfo> tags and such?


:arrow: If you want to use Custom Post-Processing Scripts to delete NFO files that are not valid XML files from the source directory, then the code for that could look like this:

Groovy: Select all

{ source, target ->
	trash source.dir.listFiles{ f -> f.extension ==~ /nfo/ && none{ f.xml } }
}

:arrow: If we wanted to just add *.txt to the file name then that would look like this:

Groovy: Select all

{ source, target ->
	source.dir.listFiles{ f -> f.extension ==~ /nfo/ && none{ f.xml } }.each{ f ->
		move(f, f + '.txt')
	}
}
:idea: Please read the FAQ and How to Request Help.
Post Reply