我有这个结构:
K:\private\test\files
K:\
private
test
files
test.txt
创建符号链接:
C:Users\username\Documents
为:
mklink /D "%UserProfile%\Documents\Test "K:\"
现在,已创建符号链接,但不完全。创建了Test
文件夹,可以打开private
文件夹,但无法打开test
文件夹。我收到这个错误:
位置不可用。
C:\ Users \ username \ Documents \ Test \ private \ test不可用。如果 位置在此PC上,确保设备或驱动器已连接或 插入光盘,然后再试一次。如果位置在a 网络,制造商确保您已连接到网络或互联网,并且 然后再试一次。如果仍无法找到该位置,则可能会找到该位置 被移动或删除。
如何创建符号链接以便将所有内容链接起来。 test.txt
test
文件夹中的 $(document).ready(function () {
//Modal window for Payment Summary
$('.button-link').on('click', function () {
//$('body').find("#paymentSummaryForm").remove();
$("#paymentSummaryForm").dialog({
dialogClass: 'no-titlebar',
autoOpen: true,
position: { my: "center", at: "top+410", of: window },
width: 1000,
height: 750,
resizable: false,
draggable:true,
//title: 'Payment Summary',
modal: true,
open: function (event, ui) {
$(this).load('@Url.Action("PaymentSummaryView", "Home", new {id= @DateTime.Now.ToShortTimeString() })');
},
buttons: {
Close: function () {
$(this).dialog("close");
}
}
});
return false;
});
是否会出现问题?