A few Suggetions
Get Storage device on the PC then open the container then you can see the actual titlepath,remember on PC your title path might be something like
C:\Documents and Settings\username\My Documents\SavedGames\game\AllPlayers
this is not the same as on XBOX:
Code sample that might help you, use debug and concole,write to see values.
iAsyncResult = Guide.BeginShowStorageDeviceSelector(null, null);
storage_Device = Guide.EndShowStorageDeviceSelector(iAsyncResult)
StorageContainer m_StoreageContainer= m_StorageDevice.OpenContainer("GameName");
string m_TitleLocation = m_StoreageContainer.Path;
Now you can do a few things like scan the folders and files
DirectoryInfo dr = new DirectoryInfo(m_TitleLocation);
if (dr.Exists)
{
foreach (DirectoryInfo dir in dr.GetDirectories())
{
foreach(FileInfo fl in dir.GetFiles("*.txt"))
{}
}
}return null;
}
Note this code is for XNA2.0 not 1.
Hope this helps ...