我尝试将文件从D:\ Data \复制到D:\ WPSystem \ APPS {GUID} \ Install \,我有错误访问被拒绝,谁可以帮助我和/或重建源?
Pocket文件管理器可以添加新文件而不会出现任何错误
有人曾提到过“但是要将文件复制到apps文件夹,请尝试使用StorageFolder和StorageFile类”
但我不知道如何应用它
来源:Click
/* perform NN interpolation */
G_message(_("Computing..."));
Delaunay_triangulation T;
typedef CGAL::Data_access< std::map<Point, Coord_type, K::Less_xy_2 > >
Value_access;
T.insert(points.begin(), points.end());
//coordinate computation in grid
double coor_x, coor_y;
coor_x = window.west;
coor_y = window.north;
for (int rows=0 ; rows<window.rows ; rows++) {
G_percent(rows, window.rows, 2);
coor_x = window.west;
for (int cols=0 ; cols<window.cols ; cols++) {
K::Point_2 p(coor_x,coor_y);
std::vector< std::pair< Point, Coord_type > > coords;
Coord_type norm = CGAL::natural_neighbor_coordinates_2(T, p,std::back_inserter(coords)).second;
Coord_type res = CGAL::linear_interpolation(coords.begin(), coords.end(), norm, Value_access(function_values));
G_debug(5, "x: %f y: %f -> res: %f (row=%d; col=%d)",
coor_x, coor_y, res, rows, cols);
coor_x += ewres;
std::cout << res << " ";
}
coor_y -= nsres;
std::cout << std::endl;
}
G_percent(1, 1, 1);
答案 0 :(得分:0)
如果您收到拒绝访问权限,则代码中不存在异常问题。运行应用程序的用户没有运行此权限的权限,或者文件/目标文件夹由于某种原因被锁定。