loadfile

How do you load a file into a variable in ant using the <loadfile> task?

I'm trying the following and it doesn't seem to work. <property name="file.configs.txt" value="" /> ... <target name="..."> <loadfile property="file.configs.txt" srcFile="remoteConfig/configs.txt" /> </target> I read here that the <loadfile> task is supposed to load the contents of a file into the specified property. ...

wx.TextCtrl.LoadFile()

I am trying to display search result data quickly. I have all absolute file paths for files on my network drive(s) in a single, ~50MB text file. The python script makes a single pass over every line in this file [kept on the local drive] in a second or less, and that is acceptable. That is the time it takes to gather results. However, ...