Add check for existence of file when using -file switch for multiple clients. Mantis #227

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1756 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Jim Radford
2008-04-22 02:00:53 +00:00
parent 70dad60d12
commit 60140dca7b

View File

@@ -56,6 +56,12 @@ namespace libsecondlife.TestClient
{
file = arguments["file"];
if (!File.Exists(file))
{
Console.WriteLine("File {0} Does not exist", file);
return;
}
// Loading names from a file
try
{