For desktop apps, I've used the following to access network shares:
[DllImport("mpr.dll")]
private static extern int WNetAddConnection2(NetResource netResource,
string password, string username, int flags);
[DllImport("mpr.dll")]
private static extern int WNetCancelConnection2(string name, int flags,
bool force);
Are there similar APIs available on WP8 SDK?
No. Windows phone doesn't support network shares. It's not the same as full windows. There is not dllimport or access to native Apis