Alias in C folder

Dear  Gurus,
    Please tell me what is function of alias  in c folder.
    how it can be use?
Ravindra

Functionality understood

Similar Messages

  • Odd message when trying to save to alias of Pictures folder

    Hi. Maybe someone can help me. When I try to save an image to an alias of my Pictures folder that is located on the desktop, the image *does* get saved to a folder *within* the Pictures folder called Original Images. Then I get an error message reading "File alias [path to alias] [name of picture file] wasn't found." I click OK on this dialog box and it reappears seven or eight times. Note that this occurs *both* when I save to the Pictures folder itself as well as when I save to its alias. I deleted the alias and made a new one, again placing it on the desktop, yet the problem persists. This usually happens when I come across a picture file on the Web that I wish to save.
    I am running Mac OS 10.7.5 on a MacBook Pro with 4 GB of RAM. I've recently repaired the file permissions. This behavior started a few days ago. The Web browser I use is Firefox version 15.
    I'm just really puzzled about why all of a sudden these new, saved images are now automatically being placed in this subfolder called "Original Images." And the error messages are disconcerting.  Any thoughts?  Thanks in advance.
    Message was edited by: Brutalbrutus

    Thanks, everyone, but I fixed the problem. I had accidentally turned on an Applescript to keep the Pictures folder organized.

  • Why can't I make an alias of a folder in a samba share

    I have successfully created a program that uses a share, which I'll call "ShareAFP".  I can make an alias out of
    ShareAFP:Jobs:Direct
    However when I attempt to make an alias from an already mounted share, which I'll call "ShareSMB" on a windows server. I cannot make an alias out of
    ShareSMB:Jobs:Direct
    The folder ShareSMB:Jobs:Direct does exist but I get AppleScript Execution Error:
    "File ShareSMB:Jobs:Direct wasn't found"
    "Offending Object" is shown as "ShareSMB:Jobs:Direct
    This error prevents my script from running.
    Could someone explain why this is happening and what I can do about it?

    This turned out to be a case of asking the wrong question.  Our file server was changed from an AFP to SMB but the problem I was having was due to the fact that folder names had also been changed (dog knows why). Makes me wish there was a way to delete the whole question.

  • Can't make alias in Applications folder

    Something has suddenly changed on my MacBook Pro (running 10.5.1), and I can't create an alias for anything in the Applications folder. If I do "Command-L", nothing happens. "Make Alias" on the File menu is grayed out. I am logged in as an Admin.
    I've run Repair Permissions a few times, but that doesn't fix it. When I do "Get Info" on the Applications folder, I see permissions for _unknown, (unknown), and everyone. I don't see a listing for admins. I don't remember what used to appear before this problem started. The permissions for the Applications folder appear as drwxr-xr-x+.
    Does anyone know a solution to this problem?
    Thanks for any help.
    Peter

    Ok, I tried adding "admin" and "system". I unlock the panel, but when I click the "+" to add a user, the Finder closes completely, the screen goes blank except for the wallpaper, and then the icons and windows come back. I wonder if my OS install is damaged?
    I was able to change the permissions on "Everyone" (which is already in the user list for Applications) to "Read & Write". This allows me to make Aliases. Not a good long-term solution, though.
    I think I'll try re-installing Leopard and then reinstalling all the updates, and see if that brings back the correct users and permissions for the Applications folder. I hope it will also fix the problem I have with Finder crashing when I try to add users and permissions for an item.
    Thanks,
    Peter

  • Broken Preset Alias in  Preset folder

    Have just added  a small ssd to my computer as an OS boot disc and had to move my home folder to  what was my old  boot disc
    Upgrades to illustrator  and other apps whent fine   but  I cannot launch  Indesign  lots of things  missing  a quick  look in the indesign applications folder Presets and i find a a presets alias  is broken  In both my  new Applications  folder on my ssd boot disc and in the  old applications folder on my OLD HD
    I would assume thta this broken link  is the sourse of the problem   can anyone say  to what folder the alias should be pointing to  and where its
    On A mac OSX  10.5.7
    Just incase   this is not the problem
    here are some of the error messages when i try to load
    Cannot load InCopy Bridge UI.InDesignPlugin because it requires version 9.2 or later of the Username UI.InDesignPlugin plug-in. Please contact vendor for compatible version of Username UI.InDesignPlugin.
    Show this alert again?
    Cannot load the OutputMiscUI.InDesignPlugin plug-in. It is dependent on the Swatches Panel.InDesignPlugin plug-in, which failed to load. Please check documentation for the Swatches Panel.InDesignPlugin plug-in.
    Cannot load the Swatch Library Panel.InDesignPlugin plug-in. It is dependent on the Swatches Panel.InDesignPlugin plug-in, which failed to load. Please check documentation for the Swatches Panel.InDesignPlugin plug-in.
    Fortunately have not upgraded  Photoshop   assume that may have similar issues
    This was aproblem with a nother app i have  called  Yojimbo  Had to recreate  aliases  people sugest i use symlinks instead of aliases
    Graeme

    Uninstall ID, run the cleaner tool (CS Cleaner Tool for installation problems | CCM, CS6, CS5.5, CS5, CS4, CS3) and reinstall.

  • Sidebar alias to nas folder disappears

    I use several nas folders from a thecus nas, mounted with AFP. Some of them i have dragged to the sidebar to "Favorites". With OS/X 10.6, 10.7 and 10.8 all was running well. Every time i clicked on an alias, the folder comes up or comes up after it was automatically mounted.
    Since updating to OS/X 10.9 the aliases disappears from the sidebar under several conditions. Common to those is, that the folder is not mounted when clicking on the alias. When f.i. trying to store a file in a nas folder while the folder is not mounted, under 10.6-8 the folder got mounted and storing was possible. Now, under 10.9, clicking on a not mounted alias folder, the folder disappears from the sidebar, in the store dialog sidebar as well as in the finder sidebar. And there are several other situations which makes the alias disappear.
    Has anybody an idea what the problem is (with Mavericks) and how to solve it ?

    I have been experiencing an allied problem where aliases to files that I put into the sidebar periodically disappear...

  • AppleScript to handle the original file when I add an alias to a folder

    I'm looking for a Folder Action to solve this problem:
    When I add a file to a specific folder (the files added to this folder are always aliases), I want the original file of the alias to get his label color setted to another color.
    How can I do this?
    Jean-François

    Hello
    You may try something like the following script.
        This script can be run in three ways -
        [1] run as automator folder action; argv = {input, parameters} where input is alias list added to folder
        [2] run in editor; argv = script (self)
        [3] run as applescript folder action; argv = alias list added to folder
    on run argv
        if argv's class = list then -- [1]
            _main(argv's item 1)
        else -- [2]
            choose file of type {"com.apple.alias-file"} with multiple selections allowed
            _main(result)
        end if
    end run
    on adding folder items to d after receiving argv -- [3]
        _main(argv)
    end adding folder items to
    on _main(argv)
        script o
            property |LABEL| : 4
                0   none
                1   orange
                2   red
                3   yellow
                4   blue
                5   purple
                6   green
                7   gray
            property aa : argv
            repeat with a in my aa
                set a to a's contents
                tell application "Finder"
                    if item a's class = alias file then
                        set item a's original item's label index to |LABEL|
                    end if
                end tell
            end repeat
        end script
        run script o
    end _main
    Briefly tested under OS X 10.6.8.
    * Note that folder action can be very slow to be triggered.
    Regards,
    H

  • Alias to user folder

    Hello.
    Whenever I log into my user, it places an alias on the desktop that points to my user documents folder. The alias is locked so I can't trash it. I can unlock it and trash it, but when I re log in, the alias is back again.
    Any ideas?

    Mark,
    OK, all in OS9. I take it there's no AppleShare server or OSX Server involved (or you would have mentioned it). Is there anything in the Servers or Shutdown Items in the System Folder.
    Does the alias have a non-blank icon ? I know there can sometimes be an issue with unlocking and trashing files that are hosed in the Desktop DB. If you can, rebuild the desktop in OS9 when you next restart - this may be a very long process if OSX is installed.
    Is the alias always in the same place on the desktop, or is it under the hard disk icon. This will let us know if it is being recreated or just not being deleted. What if you move it to a new location and log out / log in ?
    Once the obvious things have been tried I'm beginning to think that it is something like a default desktop. I can't remember there being different desktops for multi-User OS9, so maybe the alias belongs to the admin user (explaining why it is locked). Perhaps you can confirm if the alias appears on the desktop for the admin user.

  • Front Row doesn't show alias/Ext HD folder...

    Frustration... It was working perfectly under 10.4 but doesn't work at all now.
    Created an alias of my ext HD movies folder and placed it in the "Movies" folder of iTunes library, but Front Row doesn't see it at all.
    When i drop that alias in itunes itself it copies all the contents/movies, wich takes too much room and is not what i want...
    Help?

    I think you've misunderstood the suggestions for this, the alias needs to live in your user's "Movies" folder, not in the iTunes "Movies" folder. It should be in this path:
    <Macintosh HD>/Users/<YourUsersShortName>/Movies/
    You should be able to move the alias you've already made into the right folder and then Front Row should find your hard drive.
    -Doug

  • Alias to user folder inside user folder?

    For some reason I've found I now have an alias (symbolic link?) to my user folder inside my user folder. This seems odd. It was created last November, and I have no idea how or why.
    I'm wondering if it can have anything to do with the many anomalies I seem to be experiencing in Mavericks 10.9.5 on an Intel iMac, e.g.:
    • The horror of thousands of "com.apple.IconServicesAgent failed to write" messages suddenly starting to show up in Console, with com.apple.IconServicesAgent consuming huge amounts of CPU time and memory, and Finder windows not listing their contents, with a gear in the corner spinning endlessly
    • Extremely slow boot-up
    • Extremely slow opening of apps such as Safari and Mail
    • My main level "Library" and "mach_kernal" having become visible, when they originally were invisible
    It seems that my entire system has gotten extremely sluggish, and I have tried everything I know, going through countless threads in this forum, trying "fixes" that don't seem to fix anything about it. I'm desperate, and now am wondering if this odd alias has anything to do with my woes. It's very troubling.
    Thanks for any help anyone can give me

    I do not think having an Alias to your home directory in your home directory will affect your performance issues.
    I suggest you post the output from EtreCheck and let the forum analyze it.
    <https://discussions.apple.com/docs/DOC-6174>
    I suspect something more serious is going on.  Adware perhaps.
    With respect to a back pointing Alias, since anyone can create an Alias (or a similar, BUT different, Unix symbolic link), the operating system is prepared to deal with loops, and tends to notice when a request to access a file has an infinite loop Alias or symlink in the path that prevents it from actually getting there.
    You just double clicking on an Alias, that takes you back up the directory tree, is not an automated process, so you can most likely do that all day long, until you get tired of playing that game.
    An applications program that decides to walk a directory tree by opening one directory at a time and not keep track of its history, nor notice that it opened an Alias or symlink is an application program that has a bug in it.  There are not many programs that actually do this, and the few that do, have already discovered they need to either NOT follow an Alias or symlink, or know enough to maintain state information that tells them when they have a loop.

  • Alias user&documents folder on ssd question...

    Hey guys, I just got a mackbook pro with 120 ssd as boot and optibay 7200 second drive,
    Im going to clone my old boot drive but it is 300gb...
    Can I alias my user/and documents folders to my 7200 750gb drive and everything work fine with all my sample library sets ?
    If so How?
    Thanks!!

    These instructions are for Lion. Back up all data first and be prepared to restore if anything goes wrong.
    Open the Users & Groups preference pane in System Preferences. Click the lock icon and authenticate. Right-click or control-click your name in the account list and select "Advanced options..." In the sheet that opens, change your home directory to where you want it to be. Save your changes, log out, and log back in.

  • Creating a folder alias on a shared network drive

    Hi,
    I have a folder that is housed on my computer that I would like an alias of on my company's shared network drive. I will have access to the shared network drive from my home computer either through Citrix or a VPN, so I would like the alias on that drive so that it will reflect any changes I make to the files within either from my work or from my home computer. My question therefore is, how do I create an alias of a folder on a shared network drive? I tried creating an alias on my local drive and then dragging it to the shared network drive, but that just copied the folder and removed the alias.
    Any help would be greatly appreciated!

    Nevermind. I must have copied over the original folder the first time instead of the alias, as a simple drag and drop of an alias folder just worked fine for me.

  • Can't Drag (or make alias) Folder from Home Documents into Documents

    I have a folder called Documents in Finder's sidebar... and also one under my name (home)... they match up pretty well, but there is one folder in my home>documents file that I cannot get to drop into the Documents file in my sidebar. Why is this? I've made an Alias of the folder and dropped it to my Desktop and then tried dragging it into the Documents folder, but that didn't work either.
    On more thing... my Documents file in the dock SHOWS this folder. It even shows the alias. I click "open in finder" but STILL, neither folder appears.
    Message was edited by: Brad Baxter

    Uh, that's what I'm saying... it should contain the same stuff (because it is an alias), but it doesn't.

  • How can I make iTunes accept an alias as a movies folder?

    I love how iTunes organises my media files. But I need to keep my movie purchases on a different, external HD with USB 3.0.
    Creating an alias of the folder "Movies" I've copied to the HD and moving the alias back on place into the user's local Library ends in disaster. All movies that have been in the folder before moving it to the new HD are still playable.
    All newly purchased movies are downloaded out of the "Movies" folder at top level directory instead on the external HD. I can copy them to the external HD aliased "Movies" folder, but they won't appear in iTunes after dragging the files onto the iTunes window. I get an error message that says, the appopriate folder is missing. What can I do to make iTunes accept the aliased "Movies"-Folder as default for purchased movies?

    iTunes is very good, and has been for years, at totally ignoring alises and symbolic links, particularly when another drive is involved.  If you want to keep movies on a separate drive you will have to take a humbler approach and drag them to the external drive, then add them from there (hold down the option/alt key while adding to iTunes so iTunes doesn't copy them back to your main drive).  Maybe some day in the distant future the programmers of iTunes will realize many users have to use external drives since the ones supplied with the computers these days are pretty small (my 12 year old computer has a bigger drive), and if Apple wants people to buy huge media files from the iTunes Store they need to factor this into design.  Send feedback to:
    http://www.apple.com/feedback/itunesapp.html

  • Make Alias Folder Action

    I am trying to write a folder action to take care of company time sheets. I can write one to duplicate them but, I would prefer to make an alias instead. I make new time sheets with a spreadsheet and when they are ready they are saved to a folder in Users:xxx:Documents:Time Sheets. When added to this folder I would like an alias left in a folder on the desktop. I tried this:
    on adding folder items to this_folder after receiving these_items
    tell application "Finder"
    make new alias (added_items) to folder "Macintosh HD:Users:xxxx:Desktop"
    end tell
    end adding folder items to
    but it doesn't work. Could someone point me in the right direction.
    Mac Mini 1.66 CoreDuo   Mac OS X (10.4.9)   G3 iMac
    Mac Mini 1.66 CoreDuo   Mac OS X (10.4.9)   G3 iMac

    Using 'path to Desktop' or 'path to Desktop from user domain' will make the script more portable, since it will get the path to the desktop of whatever user is running the script. You can also get rid of the outer 'tell Finder' block - most of the time if there is only one statement you can skip the 'end tell'. For example, the following are equal:
    <pre title="this text can be pasted into the Script Editor" style="font-family: Monaco, 'Courier New', Courier, monospace; font-size: 10px; padding: 5px; width: 720px; color: #000000; background-color: #E0E0E0; overflow: auto">tell application "Finder"
    make new alias file to these_items at MyFolder
    end tell
    tell application "Finder" to make new alias file to these_items at MyFolder
    </pre>
    G4 Digital Audio 1.4GHz   Mac OS X (10.4.10)  

Maybe you are looking for

  • Accounts Payable Trial Balance Report does not include a Credit Memo amount

    Hello Experts,                     We are having an issue with Ap Trial Balance report not displaying a credit memo amount whereas Gl Balance shows that amount. The Credit Memo has a August invoice date and September pay date but it's not showing up

  • How Can I Get a New IP Address?

    I'm starting to get direct-mail solicitations just from visiting websites so I'd like to change up my IP address. I tried unplugging the cable modem for a long time, but it reconnected to the same IP. Can I tell Airport Express to get a new IP addres

  • Initialization error for 0FI_AA_11

    Gurus, While trying to initialize the request for the datasource 0FI_AA_11, I am getting the following error. Has anyone seen this error before or could suggest what should be done for this. I have already loaded the master data for asset accounting

  • Java Virtual Machine - Help

    I downloaded the JVM v1.4.2_03 and everytime I turn on my computer an error comes up. Its title is "Java Virtual Machine Launcher" and it says "Could not find the main class. Program will exit." Can someone please help me with this problem? It doesn'

  • Release Stategies for a document type

    Hello Gurus,    Is there any bapi that I can use to display the release codes applicable for a document type? For a PR perhaps? Thanks, Jeffrey