|
I have a network share that is several levels deep. For one particular folder, I would like to assign different rights than the default access that the shared folder is allowing. However this does not seem possible, as all of the child rights and inherited...
Started by Aaron M on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Your best....
If the file permissions overrode the share, there would be no point in share permissions .
Most files are RW for Everyone but then restricted at the share level .
This is standard.
Share permissions trump any file permissions.
That is correct.
|
|
In XP, control-click on the "up folder" icon opens the parent folder in a new Window .
After much searching, I find no way to do this in Vista. It's easy to get to the parent folder, but not in a new window.
Started by dggoldst on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
ALT + UP ARROW to navigate to the parent folder....
CTRL + N to open the current folder in a new window.
If the current folder is the first one listed (like if it is on the desktop) then click this.
Of the parent folder.
|
|
Hi,
I am accessing Mail files from Lotus Notes.
For example "Inbox" but Inbox can again contain sub-folders.
So in order to differentiate i am comparing Parent Id of each folder.
Regards,
Preeti
Started by Preeti on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are simply trying to get a handle to the "parent), and then split....
Parse the folder names to get the parent child relationship information you need, and then access the "parent" folder by name instead of an ID.
|
Ask your Facebook Friends
|
I use a flat document list for certain document types and I want to give my users a possiblity to jump to the parent folder of this document.
Is there a column that contains this information? I couldn't find one.
Started by Daniel Ehnert on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
At best, you can 'guess' the parent folder by getting the second-to-last segment....
No, there isn't a column or UI affordance for the parent folder in either a document library, there is nothing OOTB that provides this information.
|
|
In unices, do new folders/files inherit parent permissions?
What about groups and owners? (maybe those don't qualify as permissions...?)
Started by Nathaniel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
The umask value is subtracted from 777 (full rwx permissions for everyone... .
All new folders and files created use the umask value to determine the default permissions they will be created with.
Permissions on UNIX and UNIX-like systems aren't inherited.
|
|
I have the following directory structure:
Documents
----Incoming
----Originals
----Processed
----Working
Originally I thought I only wanted to track Working , so I made a bzr repo in there.
Now I've decided that I actually want to track the whole folder...
Started by James Polley on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
You can "work around" it by moving everything in your repo to a newly-created Working directory, then add the other directories, but if that's too ugly for you then you need to create a new repo that has everything you want... .
As far as I know, you don't.
|
|
I am running Python 2.5.
This is my folder tree:
ptdraft/ nib.py simulations/ life/ life.py
(I also have __init__.py in each folder, omitted here for readability)
How do I import the nib module from inside the life module? I am hoping it is possible to...
Started by cool-RR on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For some reason, now simply import nib works (I am .
You need to add the directory that contains ptdraft itself (not its parent) to PYTHONPATH.
To the module being in a parent directory or anything like that.
|
|
I would like to change the rewrite rule to only apply to the current folder that the htaccess file is in
RewriteEngine on RewriteRule ^(.*)\.html $1\.php
how do I change this to make that work? Thanks,
Started by Daniel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could ....
- [s=1] RewriteRule ^(.*)\.html $1\.php
That skips the next 1 rule when the condition is true .
If you have a limited number of known sub-directories I would do something like this:
RewriteCond %{REQUEST_URI} (list|of|sub|dirs) RewriteRule .
|
|
Hi
This will end up being a Folder Action.
I want to get the folder name of the front window eg "bob" and prefix the files within to "bob_123.jpg"
I am ending up with the whole path+folder when I ask AppleScript to:
Code: get name of front window
and ...
Started by teszeract on
, 12 posts
by 5 people.
Answer Snippets (Read the full thread at macworld):
What do you get when you try:
Code: tell of OSx that returns the full unix path as the name of a folder (unless you've done some odd system as the name of a folder....
As the name of a folder (unless you've done some odd system hack).
|
|
I have the following output structure of executables in my solution:
%ProgramFiles% | +-[MyAppName] | +-[Client] | | | +-(EXE & several DLL assemblies) | +-[Common] | | | +-[Schema Assemblies] | | | | | +-(several DLL assemblies) | | | +-(several DLL ...
Started by aoven on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's how .Net finds the assemblies that are needed: http://msdn.microsoft.com/en-us/library/yx7xezcf(VS.71).aspx
Step 4 is what might be interesting for you to read: http://msdn.microsoft.com/en-us/library/15hyw9x3(VS.71).aspx
Have you considered using... .
|