|
I know you can write support for custom PSDrives. But those are always a root of a file system. What would be nice if there was a way to allow for VFS start at arbitrary nodes of the file system, such as using Set-Location to enter archive file maybe ...
Started by Johannes Rössel on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For example:
New-PsDrive -Scope Global -Name MyMod -PSProvider FileSystem -Root (split-path $profile | join-path -child Modules) dir MyMod:\
You need to write a provider... .
In fact, you can already do this to some degree without writing any snap-in code .
|
|
Recently I've installed Windows 7. I was used to use XP before. While trying to copy Firefox profile from XP's NTFS drive ( D:\Documents and Settings\[UserName]\Application Data\Mozilla ) to 7's NTFS drive ( C:\Users\[UserName]\AppData\Roaming\Mozilla...
Started by Donotalo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Here is an illustrated tutorial:
How to Take Ownership & Grant Permissions to Access Files & Folder in Windows 7
if you frequently have to 'take ownership', i recommend to add this feature to your context menu:
Add Take Ownership Option in Right....
|
|
I need to copy the result of the bleow script to a describe location of a unix system. the script is
@echo off setlocal enableextensions enabledelayedexpansion set Counter=0 set FILEPATH=C:\VPM-WNC-MANUAL-MIGRATION for /f "usebackq tokens=2,5,6 delims...
Answer Snippets (Read the full thread at stackoverflow):
Then copy the file normally.
You can use Samba to mount a unix filesystem as a Windows drive .
|
Ask your Facebook Friends
|
Is there a tool that would allow me to change the file creation time and file modified time on a list of files?
Must be able to work in the NTFS and FAT32 file systems.
Started by Mark Tomlin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Select one or more files Commander is of course the answer to all file management problems :-) ! But if you only want to change dates (and other file ....
Total Commander enables you to change creation date and time for a file.
|
|
I'm new to Sharepoint and just starting to poke around with Sharepoint Designer. I'm curious about the file system I see in Sharepoint designer which doesn't seem to appear anywhere else.
When I open a Sharepoint site in Sharepoint Designer, and I see...
Started by Deane on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Generally....
If these files should become customized through.
That exist in two different places:
The local file system of the SharePoint web front-end (WFE and Features) do, in fact, live within the server file system.
|
|
Network file systems are offered by Windows and (L)Unix. Is there one for IBM Mainframes? (Hard to believe not). Does it offer standard Unix-style access (binary? Ascii? EBCDIC?) to mainframe data areas? How are datasets/partitioned data sets treated?...
Started by Ira Baxter on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
So is SMB.
NFS is supported on System z .
|
|
I'm deploying my apps now to a server that has a read only file system. I was using a gem to make a zip file and randomly plopping it in /public somewhere. Now I can only write to tmp - how do I serve the user that file out of the tmp folder?
Started by Stacia on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The problems....
Another link was made to an action which uses send_file with the path of the file I created in temp.
What I did was create a file in tmp using one method and linking to it with link_to_remote to generate the file.
|
|
I need to load help files from my windows C# application and move/copy to other system (to its local drive). Application (same C# windows application) on the local system will use it for help.
What needs to be done to accomplish this?
I understand File...
Started by LittleBoy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
File.Copy and password, the following answer is applicable: Copy file to remote computer using remote admin.
The target can be a remote share (UNC).
File.Copy() Copies an existing file to a new file.
|
|
I want to search a file duplicate by its hash. For performance purposes I want to know if there is a stored hash/checksum for each file in NTFS/FAT file systems. If there is, I don't have to compute them all to search my file.
If there is, how to access...
Started by Jader Dias on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
As Jader Dias suggests.
Windows does not store a hash for each file.
There is no such thing.
|
|
I have millions of audio files , generated based on GUId ( http://en.wikipedia.org/wiki/Globally%5FUnique%5FIdentifier ). How can I store these files in the file-system so that I can efficiently add more files in the same file-system and can search for...
Started by Naveen on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
By selecting the number of bytes you use for each .
Search for a file will be very fast.
What file system? *nix? Win32? Win64? Other if needed.
Million, 50-500 million, or 500-999 million? It matters.
|