phishyYy

Results 6 comments of phishyYy

Thanks for the quick answer @KevinJump . I'll try that. I do depend on the path structure. I migrate the content do new document types at a later stage and...

Okay, that did work and the folders are now id:s. Unfortunately I do need the paths as is. Is there anyway I can enable long paths or do you have...

Yeah exactly. For some reason I can't get the package to respect the windows registry setting. It works on my machine, tested it manually and on a console app. So...

Is there any way to get hold of the source code for the Packer package ?

@KevinJump really appreciate your help man! Thx. I just realized that the actual error happens here: Jumoo.uSync.BackOffice.Helpers.uSyncIOHelper.SaveNode(XElement node, String path). Or am I not understanding this correctly? The current uSync...

@KevinJump I solved my issue by doing this in the SaveNode method in uSyncIOHelper: ```C# if (File.Exists(path)) { ArchiveFile(path); // remove // File.Delete(path); } string folder = Path.GetDirectoryName(path); // The...