post commit hook runs a console app
args[0] looks something like 'C:\Users\myname\AppData\Local\Temp\svnADAD.tmp'.
first couple lines of console app is like so
static void Main(string[] args)
{
string[] affectedPaths = File.ReadAllLines(args[0]);
}
throws file not found error
navigating to the path in question also confirms that the file does not exist