Get Folder Contents....bug? ***

I am creating a workflow using a combination of variables and filters to reorganize a bunch of files. I frequently use the "Get Folder Contents" action in this workflow. It works the first couple of instances I have it in the workflow and in all instances when I first create the workflow. However after I save and quit the workflow, if I open it up again the from the third instance of using the "Get Folder Contents" action it stops working and is flagged as "Get Folder Contents" encountered an error. If I delete this instance of "Get Folder Contents" and drag a new one into the same space it works fine....until I save and quit the workflow and open it up again - and then it fails.....
How do I fix this?
Any help greatly appreciated....
A

You can pass the input items directly to a Run AppleScript action, or use the Get Folder Contents and Filter Finder Items actions to get a list of file paths.  If you are looking at just getting names, I have a Get Names of Finder Items action that can return various paths and file name parts of the input items.  The action can be downloaded from my Automator web page.

Similar Messages

  • Get Folder Content with category attributes

    Hi Gurus,
    I want to get all documents of a folder with few custom category attributes values.
    How can I query this?
    Thanks
    JO

    Yes, you make a SearchExpression tree that holds all your attributes and values to compare them to. Here is something I used for a category with 7 attributes:
            AttributeRequest[] ar = new AttributeRequest[]{
                new AttributeRequest(Attributes.CLASS_NAME, null),
                new AttributeRequest(Attributes.METADATA_ATTRIBUTES, new AttributeRequest[]{
                new AttributeRequest(Attributes.ATTRIBUTE_NAME, null),
                new AttributeRequest(Attributes.DISPLAY_NAME, null)
            NamedValue[] SEARCH_INCLUDES_VERSIONHISTORY = new NamedValue[] {
                new NamedValue(Options.SEARCH_VERSION_HISTORY,Boolean.TRUE)
            NamedValue[] PRI_SORT_NAME_ASC = new NamedValue[] {
                new NamedValue(Options.PRIMARY_SORT_ATTRIBUTE,Attributes.NAME),
                new NamedValue(Options.PRIMARY_SORT_DIRECTION,Boolean.TRUE) // asc
            NamedValue[] options = (NamedValue[])FdkUtils.combineArrays(PRI_SORT_NAME_ASC, SEARCH_INCLUDES_VERSIONHISTORY);
            AttributeRequest[] reqAtr1 = new AttributeRequest[]{
                new AttributeRequest(Attributes.CATEGORIES, new AttributeRequest[]{
                    new AttributeRequest(Attributes.CUSTOM_ALL, null),
                    new AttributeRequest(Attributes.CATEGORY_CLASS_OBJECT, null) }),
                new AttributeRequest(Attributes.PATH, null),
                new AttributeRequest(Attributes.URL, null)
            Item kat = FdkUtils.getCategoryObject(s_WsCon, null, "DICOM", ar);      
            String className = (String)FdkUtils.getAttribute(kat, Attributes.CLASS_NAME);
            String atr1 = FdkUtils.getAttributeNameFromDisplayName(s_WsCon, kat.getId(), "Ime pacijenta");
            String atr2 = FdkUtils.getAttributeNameFromDisplayName(s_WsCon, kat.getId(), "ID pacijenta");
            String atr3 = FdkUtils.getAttributeNameFromDisplayName(s_WsCon, kat.getId(), "Ime per doktora");
            String atr4 = FdkUtils.getAttributeNameFromDisplayName(s_WsCon, kat.getId(), "Ime ref doktora");
            String atr5 = FdkUtils.getAttributeNameFromDisplayName(s_WsCon, kat.getId(), "ID studije");
            String atr6 = FdkUtils.getAttributeNameFromDisplayName(s_WsCon, kat.getId(), "Opis studije");
            String atr7 = FdkUtils.getAttributeNameFromDisplayName(s_WsCon, kat.getId(), "Datum studije");
            String atr1Operand = "[" + className + FdkConstants.SEPARATOR + atr1 + "]";
            String atr2Operand = "[" + className + FdkConstants.SEPARATOR + atr2 + "]";
            String atr3Operand = "[" + className + FdkConstants.SEPARATOR + atr3 + "]";
            String atr4Operand = "[" + className + FdkConstants.SEPARATOR + atr4 + "]";
            String atr5Operand = "[" + className + FdkConstants.SEPARATOR + atr5 + "]";
            String atr6Operand = "[" + className + FdkConstants.SEPARATOR + atr6 + "]";
            String atr7Operand = "[" + className + FdkConstants.SEPARATOR + atr7 + "]";
            SearchManager sem = s_WsCon.getSearchManager();
            SearchExpression seExp1 = new SearchExpression();
            seExp1.setOperator(FdkConstants.OPERATOR_EQUAL);
            seExp1.setLeftOperand(atr1Operand);
            seExp1.setRightOperand(imePac);
            SearchExpression seExp2 = new SearchExpression();
            seExp2.setOperator(FdkConstants.OPERATOR_EQUAL);
            seExp2.setLeftOperand(atr2Operand);
            seExp2.setRightOperand(IDPac);
            SearchExpression seExp3 = new SearchExpression();
            seExp3.setOperator(FdkConstants.OPERATOR_EQUAL);
            seExp3.setLeftOperand(atr3Operand);
            seExp3.setRightOperand(imePerDok);
            SearchExpression seExp4 = new SearchExpression();
            seExp4.setOperator(FdkConstants.OPERATOR_EQUAL);
            seExp4.setLeftOperand(atr4Operand);
            seExp4.setRightOperand(imeRefDok);
            SearchExpression seExp5 = new SearchExpression();
            seExp5.setOperator(FdkConstants.OPERATOR_EQUAL);
            seExp5.setLeftOperand(atr5Operand);
            seExp5.setRightOperand(IDStud);
            SearchExpression seExp6 = new SearchExpression();
            seExp6.setOperator(FdkConstants.OPERATOR_EQUAL);
            seExp6.setLeftOperand(atr6Operand);
            seExp6.setRightOperand(opisStud);
            SearchExpression seExp7 = new SearchExpression();
            seExp7.setOperator(FdkConstants.OPERATOR_EQUAL);
            seExp7.setLeftOperand(atr7Operand);
            seExp7.setRightOperand(datStud);
            SearchExpression seExp8 = new SearchExpression();
            seExp8.setOperator(FdkConstants.OPERATOR_AND);
            seExp8.setLeftOperand(seExp1);
            seExp8.setRightOperand(seExp2);
            SearchExpression seExp9 = new SearchExpression();
            seExp9.setOperator(FdkConstants.OPERATOR_OR);
            seExp9.setLeftOperand(seExp3);
            seExp9.setRightOperand(seExp4);
            SearchExpression seExp10 = new SearchExpression();
            seExp10.setOperator(FdkConstants.OPERATOR_AND);
            seExp10.setLeftOperand(seExp5);
            seExp10.setRightOperand(seExp6);
            SearchExpression seExp11 = new SearchExpression();
            seExp11.setOperator(FdkConstants.OPERATOR_AND);
            seExp11.setLeftOperand(seExp8);
            seExp11.setRightOperand(seExp9);
            SearchExpression seExp12 = new SearchExpression();
            seExp12.setOperator(FdkConstants.OPERATOR_AND);
            seExp12.setLeftOperand(seExp10);
            seExp12.setRightOperand(seExp7);
            SearchExpression seExp = new SearchExpression();
            seExp.setOperator(FdkConstants.OPERATOR_AND);
            seExp.setLeftOperand(seExp11);
            seExp.setRightOperand(seExp12);
            NamedValue[] result = sem.search(seExp, options, reqAtr1);
            NamedValue[] nvRezultat = null;Hope this helps!
    Pedja

  • Automator folder action won't run entire folder contents

    Hi,
    Ok, I think I'm pretty well versed in Automator and getting things to work. But this is just escaping me.
    I've made a simple Photoshop Droplet (done this before). Open Automator, built a workflow for getting a folders contents and then opening the contents with the Droplet.
    Saved this as a folder action,...
    But when I drag multiple items to the folder, it only runs the very first item and stops,...
    If I drag one by one into the folder it will work fine,....
    I'm going to have to be dragging multiples all the time, it's a waste of time to do one by one,...
    I'm totally missing something here,.... please help!!
    I'd also like to move the contents of the folder, once the Droplet has run, to the trash
    But first I have to get this darn thing to run on the entire folders contents,.....
    Workflows I've tried:
    1 - Open finder Items (open in my Droplet) works one at a time
    2 - Get Specified Finder Items (point to my folder)
    Get Folder Contents
    Open finder Items (open in my Droplet) again, works one at a time
    Thanks!!
    Christopher

    Hi Curly, and a warm welcome to the forums!
    I don't know much about Automator, and this may be of no help, but...
    It's either just picking up/passing one variable, when it either needs an array of variables, or needs to loop back for the next one.

  • FavoriteFolder, how to get the content inside this folder

    Hi
    I have to get with the Java api consumer the content inside the favorite folder. How can i get it?
    i write this code:
                   String searchQuery = search://{'guaglanto1'}?SearchKeywords=true&SearchExact=true&SearchCaseSensitive=true;
                   ResponseHolder rh = boBIPlatform.get(searchQuery, null);
                   InfoObjects myFav = rh.getInfoObjects();
                   if (myFav == null || source.getInfoObjectArray().length == 0){
                     result="No terms matching the following search query could be found: " + searchQuery;
                             return result;
                   result ="";          
                   for (InfoObject infoObject: myFav.getInfoObjectArray()){
                     result= result+ infoObject.getName() + " has CUID: " + infoObject.getCUID()+ " type "+ infoObject.getKind() + " has childreen "+ infoObject.getChildrenObjects();
    Where guaglanto1 is the title of the favoriteFolder.This code show the CUID,name,kind and children of the favoriteFolder.  Now i want to navigate this folder and get its content (i see from InfoViewApp there are 5 web intelligent report inside the favorite folder) but i don't know how can i get that.
    Anyone can help me to resolve this problem?
    thank you
    best regard
    Andrea

    once you get the SI_ID or SI_CUID of the favorites folder you need to write an additional query to pull all its children using:
    select * from ci_infoobjects where si_parentcuid='<si_cuid of favorites folder>'
    If the favorites folder contains folders with subfolders, this will be a recursive call. You can use query://{select....} or path://
    Look at the BIPlatform documentation in API reference and there is more information on how to use query:// or path://

  • Bookmark drag down list difficulty-folder contents overlay folder list

    Previous Firefox versions: Bookmark folders drag down in column list, contents of each folder appear in column to right of the folder list, similar to arrangement of an outline page with each subcategory tabbed over.
    New version: Contents of folders appear as I scroll down through the folder column, preventing me from seeing the next folder in column. E.G. As I scroll down past "Business" to get to my "Travel" folder, contents of business folder open on top of the main folder column preventing me from dragging down further to Travel.

    I do agree. Mine is not *perfectly* fixed neither. When the folder’s contents list is wide and contains subfolders, the cursor needs to go completely above or below those subfolder’s contents to be released from displaying it. I can readily imagine how yours is not practical.
    But mine is decent enough that I am going to live with it for now, hoping that the prior functionality (which is normal behavior IMO) is restored in an upcoming release.
    Trying to describe this gives me a newfound appreciation for those who practice the craft of technial writing.

  • WEBINF/classes folder contents packed in _wls_cls_gen!.jar on server start

    Hi,
    I'm having an issue with respect to deploying my project application in weblogic application server 9.2.
    I'm creating a war file in which I'm packaging all application contents which includes the /WEBINF/classes contents.
    I deployed the war in admin console, associated it with a managed server. When I started the managed server. I could see that all /WEBINF/classes contents have got packaged in wlscls_gen!.jar automatically. Because of this, Im getting ClassNotFoundException for all java classes which were supposed to be in /WEBINF/classes directory.
    Is there any workaround to knock off this dynamic jar and retaining the /WEBINF/classes folder contents even after server start.
    Any help would be appreciated
    Thanks

    Hi,
    The creation of wlscls_gen.jar file can not be avoided. This is a problem with WebLogic. The only way to avoid it is by creating JAR files on your own and then keeping them inside "WEB-INF/lib" directory.
    *Topic:  wlscls_gen.jar Issue*
    http://middlewaremagic.com/weblogic/?p=408
    There is no WAY to tell WebLogic to Not to create this Problematic JAR.
    Thanks
    Ravish Mody

  • Coping folder contents and sub folders

    So, I'm working on a little practice folder sync project (fun with my mac)...
    ...and I'v gotten hung up a bit because my little copying app doesn't seem to count folders and sub folders (which I suppose makes sense).
    My initial idea was to take just the date of modification and compare it to the last date that the app was run, inorder to only copy changed files. But this seems problematic on a few levels, so...
    So, my two part question is:
    1. Is there a simple command to copy folder contents and sub-folder contents, or do I need to tell the script to do each sub-folder individually?
    2. I imagine that a better way to manage which files/folders need to be updated is to create a file with a list of the contents, and dates of modification, and compare the new folder list and the old folder list to each-other... ok.. so, um. yeah. that sounds tricky.

    >1. Is there a simple command to copy folder contents and sub-folder contents, or do I need to tell the script to do each sub-folder individually?
    There are two common solutions to this.
    The first is to use the Finder's 'entire contents of...' command to get a list of everything in the folder, including sub-folders, the second is to make your script recursive - that is, it calls itself several times over.
    In the first case it's as simple as:
    tell application "Finder"
    set allItems to entire contents of folder "path:to:source:folder:"
    -- rest of code goes here
    end tell
    This can have problems, though, especially on very large directories since the Finder is not very efficient at building a list of hundreds or thousands of files.
    The recursive path is a little trickier, but you write a handler to process a folder then repeatedly call that handler, like:
    <pre class=command>on run
    set sourceFolder to (choose folder)
    processAFolder(sourceFolder)
    end run
    on processAFolder(theFolder)
    tell application "Finder"
    set allItems to items of folder theFolder as alias list
    repeat with eachItem in allItems
    if class of eachItem is folder then -- we have a subfolder
    processAFolder (eachItem)
    else
    -- code here to compare the file and back it up
    end if
    end repeat
    end tell
    end processAFolder</pre>
    So here you walk through the folder, each time you find a new folder, you walk through that until you're done. The code takes care of keeping track of where you are in the folder hierarchy.
    >2. I imagine that a better way to manage which files/folders need to be updated is to create a file with a list of the contents, and dates of modification, and compare the new folder list and the old folder list to each-other... ok.. so, um. yeah. that sounds tricky.
    There's no need to keep a file. Assuming you have two folders you can just walk through one of them checking to see if each item exists in the other, then copy the newer file to the other directory, like:
    <pre class=command>on processAFile(fileName, sourceDir, destDir)
    tell application "Finder"
    -- check if the files exist
    set sourceFileExists to (file fileName of folder sourceDir exists)
    set destFileExists to (file fileName of folder destDir exists)
    -- now comes the logic
    if sourceFileExists and not destFileExsits then
    duplicate file fileName of folder sourceDir to folder destDir
    else if destFileExists and not sourceFileExists then
    -- assuming you want a two-way synch
    duplicate file fileName of folder destDir to folder sourceDir
    else -- both files exist, so check mod dates
    if (modification date of file fileName of folder sourceDir) > (modification date of file fileName of folder destDir) then
    duplicate file fileName of folder sourceDir to folder destDir
    else if (modification date of file fileName of folder destDir) > (modification date of file fileName of folder sourceDir) then
    duplicate file fileName of folder sourceDir to folder destDir
    end if
    end if
    end tell
    end processAFile</pre>
    If you're not planning a two-way synch an even simpler option is to just keep track of the last time the synch was run. Then all you need to do on subsequent runs is ask the Finder for 'every file of folder sourceFolder whose modification date is greater than lastRunDate'.

  • Been using Macs since classic. Using MBP, OS 10.7.5. Trying to figure out how to print/save folder contents (Name, Date Modified, Size Kind) of entire (non-visible) folder? Any apps that can do this?

    Been using Macs since before classic. Using MBP, OS 10.7.5. Trying to figure out how to print/save folder contents including what's not visible on screen (Name, Date Modified, Size Kind) in entire folder?
    Screen shots are getting old hat.
    Tried select all, copy, paste into pages, but it didn't display date modified, size & kind, and also included images of selected files, which is too large. 
    Any apps/shortcuts/utilities that can do this?  Thanks in advance.

    Hello Achates:
    I did not read the rather long post. If you wish to reinstall OS X 10.4, use your software install DVD. Backup is essential. To minimize your risk, I would use an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    In that way, you will have a fresh copy of OS X and your current settings will be preserved.
    Incidentally, I do not agree that the printer problem is best solved by reinstalling OS X. I have had HP printers for sometime and, on one occasion, had difficulty after an upgrade. HP technical support walked me through uninstalling all traces of the HP driver and then reinstalling.
    Barry

  • Folder Content Listed in Content Area

    I understand that this is an issue that was fixed from a previous version, but I will give it a shot anyway.
    I would like to direct the folder content to open in the "content" area NOT in the portlet when I select a folder, but apparently this was something that was fixed in 3.0.8. Does anyone know if there is a way to get it back the old way?

    Hi Dharam,
    This can be achieved by selecting the object types (eg Folders, Documents, Bookmarks, Notes etc) that you want to use in a collaboration.
    If you are a cFolders administrator, you can define which object types are to be used across the entire system on the General tab page under cFolders Administration.
    If you are not a cFolders administrator but have administration authorization for a collaboration, you can change this default setting for the relevant collaboration. To do this, proceed as follows:
    Go to the collaboration detail screen and choose Object Types. A list of all object types appears. By default, the objects that have been selected under cFolders Administration are already selected. You can select the objects that have not been selected under cFolders Administration as required.
    Change this selection if necessary. You can select exactly those object types that you want to be used in your collaboration. The system-wide default is not affected by this.
    Regards
    Deepak

  • IPhone "No Content" bug - A Huge Error

    I've enjoyed having my iPhone for years now but I keep getting bitten by this incredibly fatal flaw in the iPod portion of the device. Occasionally, when I sync my iPhone up to my computer and try to listen to the latest podcasts I've or videos that I downloaded and just synced to my iPhone, the iPhone tells me that there is "No Content" on the device, yet when I hook it up to my computer and look at its library through iTunes I can see all the music, video, and podcasts and play them from the device. Whenever I try to access them on the iPhone itself, however, I get the "Nope, there's no content here". THIS HAS HAPPENED ON FOUR (4) SEPARATE OCCASIONS. I was able to resolve the issue twice, once by renaming some incredibly long video filenames to shorter ones, and another time by re-authorizing my computer to my iTunes account (the same computer is authorized twice now). The two latest occasions of this annoying and poorly-handled bug I was unable to recover from without doing a full restore of my iPhone. The most recent incident occurred right after I tried placing only five (5) iTunes U videos onto my iPhone. I tried unsyncing the files and taking them off the phone, but the "No Content" bug still remained.
    Does anyone have any idea why this is happening to quite a large number of iPhones? I have a theory that if too much media content is placed on the iPhone, the index of the file system somehow gets corrupted on the iPhone and it can no longer recognize the content that is on the device. I'm basing this off of previous experience with when I synced a television series with incredibly long filenames and received the "No Content" bug and most recently with the iTunes U videos (which had fairly long filenames themselves).
    It seems like quite the engineering flaw if the iPhone is touted as a multimedia device with so much storage if you can't use most of the storage to actually go towards the use of media.
    Does anyone know how to remedy this "No Content" bug WITHOUT having to do a full restore of the iPhone? I shouldn't have to restore my phone every time I want to put new videos on it.

    Graham Outterside wrote:
    I will be annoyed but I wouldn't put on my acting outfit and run around the plane like a Prima Donna claiming the world is at an end for certain.
    People generally get help more easily when their posts are short and to the point like yours. Longer rambling, hand wringing posts such as the OP tend to put the helpers off.
    And "helpers" like yourself tend to put off those seeking help by making condescending remarks, insulting them by calling them names, and coming off as an arrogant, sarcastic jerk. The "rambling" post was to help give the different situations in which I encountered the same problem, hoping it would somehow help diagnose the root issue (much like describing symptoms to an illness) and help those that have a similar issue in the future.
    "incredibly fatal flaw" - its a minor bug on a few machines and hardly the end of life as we know it ?
    "Minor bug" and "incredibly fatal flaw" are subjective to the person's viewpoint. An error in some spreadsheet program that adds several cells together incorrectly can be seen as a minor bug to someone who doesn't use spreadsheets all that often, but can be viewed as a "fatal flaw" to an accountant that works with numbers every day.
    Occasionally, when I sync my iPhone up to my computer
    So its not doing it all the time then ?
    No, it is not all the time because I don't sync videos to my iPhone all the time. Audio content is the primary thing that I change out on my iPhone on a regular basis and this "No Content" issue only presents itself when I either add movies or TV shows.
    THIS HAS HAPPENED ON FOUR (4) SEPARATE OCCASIONS.
    So thats the sum total of times in how many years you have had it ?
    I used the collective "my iPhone" in my OP when stating that I enjoyed it for many years. I've had both the iPhone 2G and 3G without this issue ever coming up, but with the 3GS I've had this issue come up 4 times. That's 4 times in less than a year. Note that these 4 times are for the total times in which a simple re-sync could not resolve the issue, otherwise the "No Content" bug count would be much higher.
    Does anyone have any idea why this is happening to quite a large number of iPhones?
    There are ten million or more iPhones and three of you on the thread. That is NOT 'quite a large number of iPhones' no matter how dramatic you try to make it sound.
    Just because only three posted in this thread does not mean that there are only three other users that have the problem. Apple's forums aren't the only source for troubleshooting (and with your "help" I'm not surprised more people are not using these forums). Try putting "iphone no content" into Google and I'm sure you'll see many more people like the four in this thread having very similar issues. No matter how much you downplay or how insignificant you try to make it sound does not mean this is an isolated incident.
    I have a theory that if too much media content is placed on the iPhone, the index of the file system somehow gets corrupted on the iPhone and it can no longer recognize the content that is on the device.
    Wrong - I have a full 32Gig of video, TV, music and have never had a problem like your, and I'd bet millions of others haven't either. You are probably correct though that its a file corruption and the way to solve that is with a Restore.
    The reason why I called it a theory is because I have been able to sometimes un-corrupt the file system by unsyncing the video content I put on, which I would think one would not be able to do with a corrupt filesystem. This issue may also be something different such as filenames with excessive periods or very long filenames that could confuse the iPod software.
    It seems like quite the engineering flaw if the iPhone is touted as a multimedia device with so much storage if you can't use most of the storage to actually go towards the use of media.
    Please stop being a drama queen - extrapolating your issue and suggesting the entire iPhone is flawed is ridiculous. The vast majority of people with iPhones use the device to its capacity without fault. To suggest otherwise is a bit naive.
    Your statement has merit, but the constant condescending tone of your post and now resulting to name-calling is a bit childish.
    Do a Restore, not a reset and see how much 'Other" memory resides on the machine.
    If you genuinely have to do a full Restore (which can take hours) then you probably have faulty iPhone in which case Applecare is your friend.
    We actually get to a part where you try to contribute to the conversation, granted we had to scroll down quite a ways to find out your simple answer is "Do a restore or go to Apple." You probably would have saved everyone a lot of time by just writing the one short sentence instead of breaking down my entire post line by line, insulting me, and then giving virtually no help to resolve the problem whatsoever. Now I have probably wasted just as much time responding to your brazen and inconsiderate post.
    I do like to help but do get pretty irritated when people overexaggerate their problems and act as if the world is ending.
    Welcome to the world of technical support. Everyone expresses their problems in their own way. Not everyone can see their problems your way and break them down into words that are pleasing to you, so you shouldn't expect them to and then get irritated at them for reaching out for help in the only way they know how.
    You would probably be better off not helping if this is how you contribute whenever you post a response on these forums. People that get irritated, treat people like excrement, and try to make them feel dumb are not for a support forum or any technical help of any kind. Please do us a favor and stay out of this thread if you're not going to actually help solve the issue or give any kind of helpful information that could lead to a solution.
    Thanks.

  • How to get folder(directory path only not file path) from local file system

    Hi Firends,
    How to get folder(directory path only not file path) from local file system , whenevr i will click on browse button.
    Please give reply for this one , if anybody knows.
    Thanks,
    Anderson.

    Hi Anderson,
    if you're using flash.filesystem.FileReference - then it is run in black box - except of filename, size and creation data (and few other properties available after some operation succeeded). This is part of security features in Flash runtime (described in header section):
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/FileReference .html
    This for example implies that user can download a content to local machine - but that content cannot be loaded back into Flash runtime. For this you would need either Air runtime flash.filesystem.File:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/filesystem/File.h tml
    (so you would created Air runtime based application: desktop or mobile but not web, even as standalone project) or you would need one of 3rd party tools that add file access/file information features to standard Flash runtime applications converted to standalone native applications.
    hth,
    kind regards,
    Peter

  • Downloaded movie, get "no content" message

    I connected my iTunes account to Disney Movies Anywhere app, and purchased (unlocked) the Disney movie Frozen in both iTunes and Disney Movies Anywhere. The movie shows up in my "purchased" tab in the iTunes Store app, but when I select watch, get the message "No Content".  When I go back to the iTUnes store and find the movie again, the icon "Watch" is shown instead of "buy/purchase".  When I select "Watch", I get the same "No Content" message. What should I do to get the content on my phone or watch the movie? Thanks

    Thanks Yes, I just found it ( at http://osxdaily.com/2010/11/24/fix-for-no-content-on-iphone-ipod-after-ios-4-2-1 -update/ ) right before I saw your suggestion to look for that fix. But thanks.  And yes, it did work.  Weird bug, but simple fix, thanks be.
    --B-bob

  • FILES REST API url to list specific folder content

    I need to retrieve the items/documents in a specific folder of our Office 365 hosted SharePoint site, but I always get an resource error. I'm trying to use the FILE REST API for this, documented here:
    https://msdn.microsoft.com/office/office365/APi/files-rest-operations
    The url to the SharePoint site with the files is
    https://informationresourcemanager.sharepoint.com/irm/fido/1074/Forms/AllItems.aspx
    and according to the MSDN documents the call should be
    GET {base-url}/Files/{folder-id}/children
    and "base-url" should in the case of SharePoint be
    https://{tenant}.sharepoint.com/{site-path}/_api/v1.0
    Now, I've tried 10 different combinations without getting any good results, so I guess I'm doing something wrong with the base-url or the site-path. Is the correct base-url this for my site
    https://informationresourcemanager.sharepoint.com/irm/fido/_api/v1.0/
    or just
    https://informationresourcemanager.sharepoint.com/irm/_api/v1.0/
    /Johan

    Hi,
    According to your description, my understanding is that you want to get all the content in a specific folder using Office 365 rest api.
    For the base url, it needs to specify the site collection name in the url. In my environment, I have a site collection called "ZhengyuGuo", so we can get all the file in such site collection like below firstly:
    https://xxx.sharepoint.com/sites/zhengyuGuo/_api/v1.0/files/
    Then you can get the content in a specific folder using the "getByPath" method like below, in my environment, I will get the all file contents in document library folder.
    https://xxx.sharepoint.com/sites/zhengyuGuo/_api/v1.0/files/getByPath('/')/children
    The json data return like the capture below:
    Thanks
    Best Regards,
    Jerry Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • After upgrading to FF7, I get Corrupted Content Error on certain web pages, Why?

    After upgrading to FF7, I get Corrupted Content Error on certain web pages, Why? When I try to log in to certain sites to get email or when I try to access a few sites I get a Corrupted Content Error message. If I use Internet explorer the sites work fine. I disabled my entire Norton internet security program and there was no change. Current OS is windows 7 on a hp platform.

    You can get such an error if there are multiple location redirects send via the HTTP response headers.<br />
    Firefox doesn't allow that for security reasons.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=681140 bug 681140] - Corrupted Content error due to multiple Content-Disposition header field instances
    ''(please do not comment in bug reports)''

  • Setting up to View Folder Contents in Browser

    I have placed 40 jpg images in a folder on my web site. How
    can I let visitors view the file names (folder contents) &
    select an image by name.
    I hate to have to make a page & enter all 40 image file
    names with links to the files. Is there a better way to do this?
    Thanks,
    Dennis

    On Tue, 25 Jul 2006 20:34:34 +0000 (UTC), "dvhughes"
    <[email protected]> wrote:
    >I have placed 40 jpg images in a folder on my web site.
    How can I let visitors
    >view the file names (folder contents) & select an
    image by name.
    >
    > I hate to have to make a page & enter all 40 image
    file names with links to
    >the files. Is there a better way to do this?
    You could enable directory browsing in the directory, but
    then you'll
    need to accept the rather ugly server default index page. If
    it were me,
    I'd write a short script that read the directory and
    displayed a more
    attractive listing. How you would go about that would depend
    on what
    server scripting language(s) you have available on the
    server.
    Gary

Maybe you are looking for

  • Frm-18108 olb no longer exists

    Hi, i am using 10gR2 forms. at first i created a olb containing webutil and my bean areas. i used it for a while and then i give up using it and decided to develop different design. but still my forms developer gives error frm-18108(failed to load th

  • Registry problem with user logon

    Hi all: We have moved our Windows 7 clients away from ZCM delivered DLU policies. As such our users need to log into our domain as part of the login sequence. However, when my users go to select the domain (advanced options/windows tab) is always sho

  • Problem with JMS Dispatcher in 10.1.3

    When we try to set up the JMS Dispatcher in Oracle SES 10.1.3, we always get an error while starting the SES: Missing class: oracle.edge.impl.dispatcher.JMSEventDispatcher Any ideas how to make JMS Dispatcher working under 10.1.3? It is quite urgent.

  • BUG: IE11, windows 8.1 enhanced protected mode prevents pages from loading. Slow browsing experiece

    if enhanced protected mode is enabled in IE11 on windows 8.1 it prevents many pages from loading in a timely manner. eg. TechNet.microsoft.com; dotnetcurry.com this is reproducible on multiple machines. please resolve.

  • Where is the trash icon?

    Just got my new Droid 2...dude says put unwanted widgets in trash. Where is the trash? Why isn't there a manual that tells you where the trash is?