Netbeans' FileBrowser Select a Folder

Hi,
I am trying to implement a File Browser in my mobile application to select target folder where I need to create some files.
Currently the FileBrowser object only allows me to select files not folders.
How do I configure it to select folders not files?
Thanks!

YogeshM wrote:
How can we do this in CF?
For CF to be able to do it, you have to be able to do it from the server.  IF you can log in to the ColdFusion server, and from that server go to 'Network Locations" and browse to a clients computer.  Then ColdFusion can do this, using the same UNC path you used in Network Locations.  This might be possible on a local network which one might have at some company or other oranizations.
But CF can NOT see what is on the client machine through HTTP.  First of all, ColdFusion is not even talking to the client, the web server (IIS or Apache) is what talks the client.  ColdFusion is talking to the web server.  Secondly the HTTP protocol is designed to prevent exactly this type of interaction for security reasons.  IF one could do what you want to do with HTTP, it would be trivially easy for evil programmers to make web sites that trick users to upload all types of sensetive information.
There are some client technolgoies that MIGHT do what you want.  Flash, JavaScript, is what you would need to be looking for, but usually these don't all just pointing at an entire directory, again for security reasons.

Similar Messages

  • I'm trying to copy music from my PC to itunes. I open itunes, go to 'file', go to 'add folder to library', select the folder and nothing happens. What am I doing wrong?

    I'm trying to copy music from my PC to itunes. I open itunes, go to 'file', go to 'add folder to library', select the folder and nothing happens. What am I doing wrong?

    Hello there, gleab.
    The following Knowledge Base article reviews the ways to import content into iTunes:
    Adding music and other content to iTunes
    http://support.apple.com/kb/ht1473
    Also keep in mind which formats can be added:
    You can add audio files that are in AAC, MP3, WAV, AIFF, Apple Lossless, or Audible.com (.aa) format. If you have unprotected WMA content, iTunes for Windows can convert these files to one of these formats.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • I deleted my download folder and now I can't download anything. I can't select the folder to "save file to" and when I select "ask me where to save files" I still can't download. it says your file will start downloading, but then it doesn't. Help!!

    I deleted the folder that saves everything that is downloaded from Firefox. After that I can't download anymore. I've tried clearing my download history, reset the download folder, reset the download action by renaming the mimetype.rdfs file and it's still not working. I've tried to choose a different download folder but it doesn't let me select any folder at all. If I select "ask me where to save files" and then try and download something, the download doesn't start after I select save to. The only time it does actually download is when I select "open with...windows mediaplayer" when downloading then the download will start. Please help. Thank you.

    You broke your phone by getting it wet.  Nothing more to say.  Bring it in to Apple for an out of warranty exchange or buy a new phone.  There's really nothing else we users here can help you with.

  • I am not able to import photos into Lightroom 5.7.  When I select a folder, it doesn't show a preview of the images and the import button is greyed out. ??

    I am not able to import photos into Lightroom 5.7.  When I select a folder, it doesn't show a preview of the images and the import button is greyed out. ??
    I have been using Lightroom 5 for 2-3 months now and all worked well, up until today's effort to import a new set of photos. I am working on a Mac with Yosemite 10.10.1.

    Go to the bibliothec module, select the folder, right click on the folder and hit synchronize
    Sorry I have only a german version , so don't know what your menu will show.

  • TS3276 how does one select a folder for an outgoing email, prior to sending out that email?

    I would like to know what I need to do to select a folder for my outgoing emails before I send them. In other words, if I am sending a message to someone, Outlook has the option to select the folder where you would like to save the outgoing email to. That way, you are able to document all of your important outgoing emails. I was wondering if Apple mail had the same option. I know you can set rules up, the challenge is that the rules do not always apply depending on the email messages.
    Thank you for your assistance.

    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback

  • I have just installed a new hard drive in my imac intel 20" (2006) and now the hard drive does not show up in the 'select destinations' folder of the install program.

    I have just installed a new hard drive in my imac intel 20" (2006) and upgraded the memory and now the hard drive does not show up in the 'select destinations' folder of the install program. I can see the hard drive in the disk utilities window however it wont let me do anything.
    It is a seagate 1TB SATA II drive however it is displaying it as a 7.3 TB.
    If anyone has any suggestions I would be happy to hear them.
    I have tried to erase and partition and get the same error message each time, 'Input/Output error'.
    I have tried starting the thing with the install disk which is Mac OS X (Tiger?) which came with the computer. No good.
    Anyone?

    Thats correct. I can see it in the list however when I attempt to erase it or partition it it's like it's not being found or recognised and it throws up the input/output error message. I am pretty sure that the sensor it attached correctly and it is a SATA drive. I can see all the infor regarding the drive when disk utility is open and it all looks good but I cant access it or do anything with it. It's taunting me!
    The install disk is in the drive and the install program runs right up to the point where you have to select the location for the install and there is just nothing in the box where you have to select the hard drive icon.
    I have my suspiscions about the drive but any help would be appreciated.

  • Selection of Folder/File name using the same Fun.Module

    Please let me know if there is a function module which can fetch folder name/File name  from the directory path when f4 option of selection screen field is selected. Currently I am able to get the file name using FM F4_DXFILENAME_4_DYNP but the requirment is like I have to select either folder name or the file name depending on user selection.
    Note: Please let me know if there is a single Function module which can get folder name or the file name based on the user selection.i.e, if the user want to select a folder he can select or he can select files in the folder for processing

    Hi sridhar
    try this:
    PARAMETER : TXT_FILE(100).
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR TXT_FILE.
    PERFORM GETFILE.
    start-of-selection.
    PERFORM GETDATA.
    FORM GETDATA.
      DATA : FILENAME TYPE STRING.
      FILENAME = TXT_FILE.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                      = FILENAME
         FILETYPE                       =  'ASC'
         HAS_FIELD_SEPARATOR           = 'X'
        HEADER_LENGTH                 = 0
        READ_BY_LINE                  = 'X'
        DAT_MODE                      = ' '
        CODEPAGE                      = ' '
        IGNORE_CERR                   = ABAP_TRUE
        REPLACEMENT                   = '#'
        CHECK_BOM                     = ' '
      IMPORTING
        FILELENGTH                    =
        HEADER                        =
        TABLES
          DATA_TAB                      = IT_UPLOAD
      EXCEPTIONS
        FILE_OPEN_ERROR               = 1
        FILE_READ_ERROR               = 2
        NO_BATCH                      = 3
        GUI_REFUSE_FILETRANSFER       = 4
        INVALID_TYPE                  = 5
        NO_AUTHORITY                  = 6
        UNKNOWN_ERROR                 = 7
        BAD_DATA_FORMAT               = 8
        HEADER_NOT_ALLOWED            = 9
        SEPARATOR_NOT_ALLOWED         = 10
        HEADER_TOO_LONG               = 11
        UNKNOWN_DP_ERROR              = 12
        ACCESS_DENIED                 = 13
        DP_OUT_OF_MEMORY              = 14
        DISK_FULL                     = 15
        DP_TIMEOUT                    = 16
        OTHERS                        = 17
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.
    FORM GETFILE.
      CALL FUNCTION 'WS_FILENAME_GET'
       EXPORTING
        DEF_FILENAME           = ' '
         DEF_PATH               = '.'
        MASK                   = ' '
        MODE                   = ' '
        TITLE                  = ' '
       IMPORTING
         FILENAME               = TXT_FILE
        RC                     =
      EXCEPTIONS
        INV_WINSYS             = 1
        NO_BATCH               = 2
        SELECTION_CANCEL       = 3
        SELECTION_ERROR        = 4
        OTHERS                 = 5
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.
    <b>This is a part of my BDC program its working for me u try n reply if it works for u.</b>
    regards
    vijay

  • When bookmarking a page, I can't get the complete list of bookmark folders to dropdown in order to select any folder in which to bookmark page. What do you set to get whole list of folders in Bookmarks to drop down?

    When bookmarking a page, I can't get the complete list of bookmark folders to drop down in order to select any folder in which to bookmark page. The 'Folder:' bar has 'Bookmarks Menu' showing. The arrow on the bar drops down 5 recent folders to which pages have been saved, but the pop down arrow to the right of the bar just opens to show the three categories and 'New Folder' button. What do you set to get whole list of folders in Bookmarks to drop down?

    To all, embarrassingly enough, I have discovered that I didn't know how to expand the three categories including 'Bookmarks Menu' in the 'Bookmark This Page' pop up interface. It was expanded by default on the initial Firefox opening and first page bookmark attempt. Next use it only showed categories. I clicked and double clicked the 'Bookmarks Menu' line, but failed to see the small, shaded triangle used to expand/collapse list. If it appears collapsed, just tap triangle at left of line to see all folders. It seems to open the same way after I do it for first time. Sorry for the inconvenience, and thanks for all the attempts to help.

  • Prevent show 'select download folder' dialog when click export csv button in a flash-based website

    I want to download csv file from a flash-based website. When i click the button with export icon, Firefox always pop up dialog box with title 'select download folder for ...'. I have set up default download folder and uncheck 'always ask me where to save files'. If i download from other websites (not a flash one) then the download automatically started without pop up folder selection dialog. I want to prevent firefox from showing download folder selection dialog because i need to use it for web automation. by the way, i use ubuntu 12.04 with firefox 21.0. I have used flashgot extension but still no luck. Any suggestion about this?

    I already have followed the instruction above, but still no luck. The dialog still appear. I think this is not a regular download link since it's made with flash. It's look like an export button which will force browser to pop up 'select folder location' dialog and when i click save then there is no download progress like usual, the file just saved automatically. I think the file itself is rendered when the flash website loaded, and then embeded into the web page. When i download, it didn't send any request, it just get the embeded file.

  • For some reason, my compression option is grayed out under "File" menu, and when I select a folder with multiple files, or multiple documents, and try to right-click or tap the mousepad with two fingers, I do not get a "compress" option available. Help.

    I don't know why, but when I select a folder with multiple docs contained within it, or multiple files, the Compress option is grayed out under the File menu, nor is it available when I right-click. Please help.

    Yes it is, but I have the same problem of the option does not appear with "right click" (I'm actually control-clicking), and COMPRESS is grayed out under the file menu. I'd like to fix it.
    Hmm. After finding the Archive Utility,* I tried archiving the folder. It came out as .cpgz, ugh. Found there was a preference to make .zip the default. It worked!
    And now…the menus are not grayed out. ?!?! OK.'
    Hope this helps someone.
    *You cannot find this via search, apparently it is a hidden file, you have to click from the root drive through to /System/Library/CoreServices (Thanks for the file path Alberto!)

  • My Acrobat XI suddenly will not create a PDF file, but has me select a folder for the file

    How do I set my Acrobat XI to create a PDF file.  It has me select a folder for the file, but nothing get printed

    There are so many ways Acrobat creates a PDF, we need to ask: exactly what steps do you follow, that lead up to this problem? Mac or Windows?

  • Need java code to select a folder from the Host server System

    Hi All,
    In my application For a button click i want to select a folder from host server .And copy an image into that selected path. Iam using tomcat 5.0. Can any one tell me how can i do this? Can any one provide sample code for this...
    Thanks in Advance!!!

    Dblr, welcome to the forum.
    When requesting help, you should always include the make/model of the computer and/or monitor. This information is necessary for us to review the specifications of them.  We need to know Windows version you have installed.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Cannot select a folder- Nikon NEF files

    OK, I am aware of all the talk about having to select a folder for the DNG converter, not the actual files. My DNG Converter has worked fine up until today, it's now not letting me select a folder. When I do, and go back to the converter window, the folder I selected doesn't appear and it says "No files selected" with the "Convert" button greyed out. Has anyone else had this happen??? I tried installing it again today, no dice. I also don't see the converter at all in my Control Panel- I wanted to uninstall and install again, or try repairing it. The only thing I've done recently is install Adobe's stupid Download Assistant...
    Help, anyone?? Thank you so much.

    Thanks for responding, Jim- I wondered about the converter not showing up, I guess it's more like a plug-in than an actual program? I did just try that when I saw your answer- it absolutely worked to pull the folder over to the icon! I'd never heard of that option...thank you so much for solving the issue. I hope this helps other users too.
    Alanna

  • Select a Folder/File starting with a Space via Keyboard

    I have just upgraded to Snow Leopard and I am having problems selecting a folder/file that starts with a space in the finder and in open/save. The problem is that it activates QuickView. In Leopard (10.5) you could override QuickView (in the Finder) by pressing the Option Key and the space bar at the same time and then pressing the next letter in the folder name. This action now open QuickView in Fullscreen mode. I have tried other key combos without success.
    Thanks for any help.
    Rich

    I have tried other key combos without success.
    OS X Help has this to say about that:
    -=-=-=-
    Creating keyboard shortcuts for applications
    You can assign your own keyboard shortcuts to menu commands in any Mac OS X application or in the Finder. This may be useful if, for example, one of the “global” shortcuts, which works the same in most applications, is used by one application for a different purpose. In this case, you can assign it a different key combination.
    You can create keyboard shortcuts only for existing menu commands. You can’t define keyboard shortcuts for general purpose tasks such as opening an application or switching between applications.
    To create a keyboard shortcut for an application:
    Choose Apple menu > System Preferences, and then click Keyboard.
    Click Keyboard Shortcuts, and then click the Add button.
    Choose an application from the Application pop-up menu. If you want to set the same key combination for a menu command that appears in many applications, choose All Applications.
    If the application you want to select does not appear in the list, choose Other and locate the application using the Open dialog. Some applications may not allow you to set keyboard shortcuts.
    Type the menu command for which you want to set a keyboard shortcut in the Menu Title field.
    You must type the command exactly as it appears in the application menu, including ellipses and any other punctuation. An ellipsis is a special character that looks like three periods. To type an ellipsis, press Option-semicolon, or use the Character Viewer. It may be difficult to know whether the command is written in the menu with a real ellipsis or with three periods, so if one does not work, try the other.
    Click in the Keyboard Shortcut field and press the key combination that you want to assign to the menu command, and then click Add.
    You cannot use each type of key (for example, a letter key) more than once in a key combination.
    Quit the application for which you added or changed a keyboard shortcut.
    Restart the application to see the keyboard shortcut in the application’s menu.
    If you assign a keyboard shortcut that already exists for another command or another application, your new shortcut won’t work. Find the menu command that’s using it and reassign the keyboard shortcut for that item.
    To remove a customized shortcut, click the Delete (–) button.

  • Finder freeze when selecting desktop folder

    When opening it shows "as icons" but if I select "as list" or if I select desktop folder, it freeze and doesn't show anything nor close the window.
    Following is my log:
    Marcador - 20/08/2014 14:09:17
    Aug 20 14:09:24 Macintosh.local Finder[1429]: -[__NSCFString hasPrefix:]: nil argument
    Aug 20 14:09:24 Macintosh.local Finder[1429]: (
      0   CoreFoundation                      0x00007fff910ea25c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff98a72e75 objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff910ea10c +[NSException raise:format:] + 204
      3   CoreFoundation                      0x00007fff9100332a -[__NSCFString hasPrefix:] + 90
      4   FinderExt                           0x0000000105cd86a3 vLogDebug + 617
      5   Finder                              0x0000000105737fcc Finder + 1073100
      6   Finder                              0x0000000105737f29 Finder + 1072937
      7   Finder                              0x0000000105737407 Finder + 1070087
      8   Finder                              0x0000000105736d5f Finder + 1068383
      9   Finder                              0x0000000105736c27 Finder + 1068071
      10  AppKit                              0x00007fff905b5468 -[NSControl drawRect:] + 341
      11  Finder                              0x000000010567b54c Finder + 300364
      12  AppKit                              0x00007fff905a804f -[NSView _drawRect:clip:] + 3748
      13  AppKit                              0x00007fff905a68c4 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1799
      14  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      15  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      16  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      17  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      18  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      19  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      20  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      21  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      22  AppKit                              0x00007fff90783fd8 -[NSBrowser _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 78
      23  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      24  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      25  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      26  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      27  AppKit                              0x00007fff905a4706 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 841
      28  AppKit                              0x00007fff905a3eb1 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
      29  AppKit                              0x00007fff905a0e9f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2828
      30  AppKit                              0x00007fff905802da -[NSView displayIfNeeded] + 1680
      31  AppKit                              0x00007fff905e574e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
      32  AppKit                              0x00007fff90bbb061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
      33  CoreFoundation                      0x00007fff9101ad67 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
      34  CoreFoundation                      0x00007fff9101acd7 __CFRunLoopDoObservers + 391
      35  CoreFoundation                      0x00007fff9100c3b8 __CFRunLoopRun + 776
      36  CoreFoundation                      0x00007fff9100be75 CFRunLoopRunSpecific + 309
      37  HIToolbox                           0x00007fff97693a0d RunCurrentEventLoopInMode + 226
      38  HIToolbox                           0x00007fff97693685 ReceiveNextEventCommon + 173
      39  HIToolbox                           0x00007fff976935bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
      40  AppKit                              0x00007fff9044924e _DPSNextEvent + 1434
      41  AppKit                              0x00007fff9044889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
      42  AppKit                              0x00007fff9043c99c -[NSApplication run] + 553
      43  AppKit                              0x00007fff90427783 NSApplicationMain + 940
      44  Finder                              0x0000000105638730 Finder + 26416
      45  libdyld.dylib                       0x00007fff96f745fd start + 1
      46  ???                                 0x0000000000000001 0x0 + 1
    Aug 20 14:09:34 Macintosh.local Finder[1429]: An uncaught exception was raised
    Aug 20 14:09:34 Macintosh.local Finder[1429]: -[__NSCFString hasPrefix:]: nil argument
    Aug 20 14:09:34 Macintosh.local Finder[1429]: (
      0   CoreFoundation                      0x00007fff910ea25c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff98a72e75 objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff910ea10c +[NSException raise:format:] + 204
      3   CoreFoundation                      0x00007fff9100332a -[__NSCFString hasPrefix:] + 90
      4   FinderExt                           0x0000000105cd86a3 vLogDebug + 617
      5   Finder                              0x0000000105737fcc Finder + 1073100
      6   Finder                              0x0000000105737f29 Finder + 1072937
      7   Finder                              0x0000000105737407 Finder + 1070087
      8   Finder                              0x0000000105736d5f Finder + 1068383
      9   Finder                              0x0000000105736c27 Finder + 1068071
      10  AppKit                              0x00007fff905b5468 -[NSControl drawRect:] + 341
      11  Finder                              0x000000010567b54c Finder + 300364
      12  AppKit                              0x00007fff905a804f -[NSView _drawRect:clip:] + 3748
      13  AppKit                              0x00007fff905a68c4 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1799
      14  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      15  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      16  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      17  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      18  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      19  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      20  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      21  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      22  AppKit                              0x00007fff90783fd8 -[NSBrowser _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 78
      23  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      24  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      25  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      26  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      27  AppKit                              0x00007fff905a4706 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 841
      28  AppKit                              0x00007fff905a3eb1 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
      29  AppKit                              0x00007fff905a0e9f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2828
      30  AppKit                              0x00007fff905802da -[NSView displayIfNeeded] + 1680
      31  AppKit                              0x00007fff905e574e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
      32  AppKit                              0x00007fff90bbb061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
      33  CoreFoundation                      0x00007fff9101ad67 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
      34  CoreFoundation                      0x00007fff9101acd7 __CFRunLoopDoObservers + 391
      35  CoreFoundation                      0x00007fff9100c3b8 __CFRunLoopRun + 776
      36  CoreFoundation                      0x00007fff9100be75 CFRunLoopRunSpecific + 309
      37  AppKit                              0x00007fff90681f09 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 122
      38  AppKit                              0x00007fff906d140d -[NSMenu _internalPerformActionForItemAtIndex:] + 35
      39  AppKit                              0x00007fff906d1289 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 104
      40  AppKit                              0x00007fff90677ff6 NSSLMMenuEventHandler + 716
      41  HIToolbox                           0x00007fff9766d1d4 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 892
      42  HIToolbox                           0x00007fff9766c787 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 385
      43  HIToolbox                           0x00007fff97680880 SendEventToEventTarget + 40
      44  HIToolbox                           0x00007fff976b6640 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 420
      45  HIToolbox                           0x00007fff976e9228 SendMenuCommandWithContextAndModifiers + 59
      46  HIToolbox                           0x00007fff976e91d0 SendMenuItemSelectedEvent + 178
      47  HIToolbox                           0x00007fff976e90af _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
      48  HIToolbox                           0x00007fff976f1085 _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 718
      49  HIToolbox                           0x00007fff976f0cb1 _HandleMenuSelection2 + 446
      50  AppKit                              0x00007fff905ea62c _NSHandleCarbonMenuEvent + 284
      51  AppKit                              0x00007fff9044952e _DPSNextEvent + 2170
      52  AppKit                              0x00007fff9044889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
      53  AppKit                              0x00007fff9043c99c -[NSApplication run] + 553
      54  AppKit                              0x00007fff90427783 NSApplicationMain + 940
      55  Finder                              0x0000000105638730 Finder + 26416
      56  libdyld.dylib                       0x00007fff96f745fd start + 1
      57  ???                                 0x0000000000000001 0x0 + 1
    Aug 20 14:09:36 Macintosh.local Finder[1429]: -[__NSCFString hasPrefix:]: nil argument
    Aug 20 14:09:36 Macintosh.local Finder[1429]: (
      0   CoreFoundation                      0x00007fff910ea25c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff98a72e75 objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff910ea10c +[NSException raise:format:] + 204
      3   CoreFoundation                      0x00007fff9100332a -[__NSCFString hasPrefix:] + 90
      4   FinderExt                           0x0000000105cd86a3 vLogDebug + 617
      5   Finder                              0x0000000105737fcc Finder + 1073100
      6   Finder                              0x0000000105737f29 Finder + 1072937
      7   Finder                              0x0000000105737407 Finder + 1070087
      8   Finder                              0x0000000105736d5f Finder + 1068383
      9   Finder                              0x0000000105736c27 Finder + 1068071
      10  AppKit                              0x00007fff905b5468 -[NSControl drawRect:] + 341
      11  Finder                              0x000000010567b54c Finder + 300364
      12  AppKit                              0x00007fff905a804f -[NSView _drawRect:clip:] + 3748
      13  AppKit                              0x00007fff905a68c4 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1799
      14  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      15  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      16  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      17  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      18  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      19  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      20  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      21  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      22  AppKit                              0x00007fff90783fd8 -[NSBrowser _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 78
      23  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      24  AppKit                              0x00007fff905a4706 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 841
      25  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      26  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      27  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      28  AppKit                              0x00007fff905a3eb1 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
      29  AppKit                              0x00007fff905a0e9f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2828
      30  AppKit                              0x00007fff905802da -[NSView displayIfNeeded] + 1680
      31  AppKit                              0x00007fff905e574e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
      32  AppKit                              0x00007fff90bbb061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
      33  CoreFoundation                      0x00007fff9101ad67 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
      34  CoreFoundation                      0x00007fff9101acd7 __CFRunLoopDoObservers + 391
      35  CoreFoundation                      0x00007fff9100c3b8 __CFRunLoopRun + 776
      36  CoreFoundation                      0x00007fff9100be75 CFRunLoopRunSpecific + 309
      37  HIToolbox                           0x00007fff97693a0d RunCurrentEventLoopInMode + 226
      38  HIToolbox                           0x00007fff976937b7 ReceiveNextEventCommon + 479
      39  HIToolbox                           0x00007fff976935bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
      40  AppKit                              0x00007fff9044924e _DPSNextEvent + 1434
      41  AppKit                              0x00007fff9044889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
      42  AppKit                              0x00007fff9043c99c -[NSApplication run] + 553
      43  AppKit                              0x00007fff90427783 NSApplicationMain + 940
      44  Finder                              0x0000000105638730 Finder + 26416
      45  libdyld.dylib                       0x00007fff96f745fd start + 1
      46  ???                                 0x0000000000000001 0x0 + 1
    Aug 20 14:09:36 Macintosh.local Finder[1429]: -[__NSCFString hasPrefix:]: nil argument
    Aug 20 14:09:36 Macintosh.local Finder[1429]: (
      0   CoreFoundation                      0x00007fff910ea25c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff98a72e75 objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff910ea10c +[NSException raise:format:] + 204
      3   CoreFoundation                      0x00007fff9100332a -[__NSCFString hasPrefix:] + 90
      4   FinderExt                           0x0000000105cd86a3 vLogDebug + 617
      5   Finder                              0x0000000105737fcc Finder + 1073100
      6   Finder                              0x0000000105737f29 Finder + 1072937
      7   Finder                              0x0000000105737407 Finder + 1070087
      8   Finder                              0x0000000105736d5f Finder + 1068383
      9   Finder                              0x0000000105736c27 Finder + 1068071
      10  AppKit                              0x00007fff905b5468 -[NSControl drawRect:] + 341
      11  Finder                              0x000000010567b54c Finder + 300364
      12  AppKit                              0x00007fff905a804f -[NSView _drawRect:clip:] + 3748
      13  AppKit                              0x00007fff905a68c4 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1799
      14  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      15  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      16  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      17  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      18  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      19  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      20  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      21  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      22  AppKit                              0x00007fff90783fd8 -[NSBrowser _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 78
      23  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      24  AppKit                              0x00007fff905a4706 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 841
      25  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      26  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      27  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      28  AppKit                              0x00007fff905a3eb1 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
      29  AppKit                              0x00007fff905a0e9f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2828
      30  AppKit                              0x00007fff905802da -[NSView displayIfNeeded] + 1680
      31  AppKit                              0x00007fff905e574e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
      32  AppKit                              0x00007fff90bbb061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
      33  CoreFoundation                      0x00007fff9101ad67 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
      34  CoreFoundation                      0x00007fff9101acd7 __CFRunLoopDoObservers + 391
      35  CoreFoundation                      0x00007fff9100c3b8 __CFRunLoopRun + 776
      36  CoreFoundation                      0x00007fff9100be75 CFRunLoopRunSpecific + 309
      37  HIToolbox                           0x00007fff97693a0d RunCurrentEventLoopInMode + 226
      38  HIToolbox                           0x00007fff97693685 ReceiveNextEventCommon + 173
      39  HIToolbox                           0x00007fff976935bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
      40  AppKit                              0x00007fff9044924e _DPSNextEvent + 1434
      41  AppKit                              0x00007fff9044889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
      42  AppKit                              0x00007fff9043c99c -[NSApplication run] + 553
      43  AppKit                              0x00007fff90427783 NSApplicationMain + 940
      44  Finder                              0x0000000105638730 Finder + 26416
      45  libdyld.dylib                       0x00007fff96f745fd start + 1
      46  ???                                 0x0000000000000001 0x0 + 1
    Aug 20 14:09:36 Macintosh.local Finder[1429]: -[__NSCFString hasPrefix:]: nil argument
    Aug 20 14:09:36 Macintosh.local Finder[1429]: (
      0   CoreFoundation                      0x00007fff910ea25c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff98a72e75 objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff910ea10c +[NSException raise:format:] + 204
      3   CoreFoundation                      0x00007fff9100332a -[__NSCFString hasPrefix:] + 90
      4   FinderExt                           0x0000000105cd86a3 vLogDebug + 617
      5   Finder                              0x0000000105737fcc Finder + 1073100
      6   Finder                              0x0000000105737f29 Finder + 1072937
      7   Finder                              0x0000000105737407 Finder + 1070087
      8   Finder                              0x0000000105736d5f Finder + 1068383
      9   Finder                              0x0000000105736c27 Finder + 1068071
      10  AppKit                              0x00007fff905b5468 -[NSControl drawRect:] + 341
      11  Finder                              0x000000010567b54c Finder + 300364
      12  AppKit                              0x00007fff905a804f -[NSView _drawRect:clip:] + 3748
      13  AppKit                              0x00007fff905a68c4 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1799
      14  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      15  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      16  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      17  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      18  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      19  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      20  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      21  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      22  AppKit                              0x00007fff90783fd8 -[NSBrowser _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 78
      23  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      24  AppKit                              0x00007fff905a4706 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 841
      25  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      26  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      27  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      28  AppKit                              0x00007fff905a3eb1 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
      29  AppKit                              0x00007fff905a0e9f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2828
      30  AppKit                              0x00007fff905802da -[NSView displayIfNeeded] + 1680
      31  AppKit                              0x00007fff905e574e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
      32  AppKit                              0x00007fff90bbb061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
      33  CoreFoundation                      0x00007fff9101ad67 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
      34  CoreFoundation                      0x00007fff9101acd7 __CFRunLoopDoObservers + 391
      35  CoreFoundation                      0x00007fff9100c3b8 __CFRunLoopRun + 776
      36  CoreFoundation                      0x00007fff9100be75 CFRunLoopRunSpecific + 309
      37  HIToolbox                           0x00007fff97693a0d RunCurrentEventLoopInMode + 226
      38  HIToolbox                           0x00007fff976937b7 ReceiveNextEventCommon + 479
      39  HIToolbox                           0x00007fff976935bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
      40  AppKit                              0x00007fff9044924e _DPSNextEvent + 1434
      41  AppKit                              0x00007fff9044889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
      42  AppKit                              0x00007fff9043c99c -[NSApplication run] + 553
      43  AppKit                              0x00007fff90427783 NSApplicationMain + 940
      44  Finder                              0x0000000105638730 Finder + 26416
      45  libdyld.dylib                       0x00007fff96f745fd start + 1
      46  ???                                 0x0000000000000001 0x0 + 1
    Aug 20 14:09:36 Macintosh.local Finder[1429]: -[__NSCFString hasPrefix:]: nil argument
    Aug 20 14:09:36 Macintosh.local Finder[1429]: (
      0   CoreFoundation                      0x00007fff910ea25c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff98a72e75 objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff910ea10c +[NSException raise:format:] + 204
      3   CoreFoundation                      0x00007fff9100332a -[__NSCFString hasPrefix:] + 90
      4   FinderExt                           0x0000000105cd86a3 vLogDebug + 617
      5   Finder                              0x0000000105737fcc Finder + 1073100
      6   Finder                              0x0000000105737f29 Finder + 1072937
      7   Finder                              0x0000000105737407 Finder + 1070087
      8   Finder                              0x0000000105736d5f Finder + 1068383
      9   Finder                              0x0000000105736c27 Finder + 1068071
      10  AppKit                              0x00007fff905b5468 -[NSControl drawRect:] + 341
      11  Finder                              0x000000010567b54c Finder + 300364
      12  AppKit                              0x00007fff905a804f -[NSView _drawRect:clip:] + 3748
      13  AppKit                              0x00007fff905a68c4 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1799
      14  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      15  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      16  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      17  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      18  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      19  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      20  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      21  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      22  AppKit                              0x00007fff90783fd8 -[NSBrowser _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 78
      23  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      24  AppKit                              0x00007fff905a4706 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 841
      25  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      26  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      27  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      28  AppKit                              0x00007fff905a3eb1 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
      29  AppKit                              0x00007fff905a0e9f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2828
      30  AppKit                              0x00007fff905802da -[NSView displayIfNeeded] + 1680
      31  AppKit                              0x00007fff905e574e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
      32  AppKit                              0x00007fff90bbb061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
      33  CoreFoundation                      0x00007fff9101ad67 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
      34  CoreFoundation                      0x00007fff9101acd7 __CFRunLoopDoObservers + 391
      35  CoreFoundation                      0x00007fff9100c3b8 __CFRunLoopRun + 776
      36  CoreFoundation                      0x00007fff9100be75 CFRunLoopRunSpecific + 309
      37  HIToolbox                           0x00007fff97693a0d RunCurrentEventLoopInMode + 226
      38  HIToolbox                           0x00007fff97693685 ReceiveNextEventCommon + 173
      39  HIToolbox                           0x00007fff976935bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
      40  AppKit                              0x00007fff9044924e _DPSNextEvent + 1434
      41  AppKit                              0x00007fff9044889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
      42  AppKit                              0x00007fff9043c99c -[NSApplication run] + 553
      43  AppKit                              0x00007fff90427783 NSApplicationMain + 940
      44  Finder                              0x0000000105638730 Finder + 26416
      45  libdyld.dylib                       0x00007fff96f745fd start + 1
      46  ???                                 0x0000000000000001 0x0 + 1
    Aug 20 14:09:37 Macintosh.local Finder[1429]: -[__NSCFString hasPrefix:]: nil argument
    Aug 20 14:09:37 Macintosh.local Finder[1429]: (
      0   CoreFoundation                      0x00007fff910ea25c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff98a72e75 objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff910ea10c +[NSException raise:format:] + 204
      3   CoreFoundation                      0x00007fff9100332a -[__NSCFString hasPrefix:] + 90
      4   FinderExt                           0x0000000105cd86a3 vLogDebug + 617
      5   Finder                              0x0000000105737fcc Finder + 1073100
      6   Finder                              0x0000000105737f29 Finder + 1072937
      7   Finder                              0x0000000105737407 Finder + 1070087
      8   Finder                              0x0000000105736d5f Finder + 1068383
      9   Finder                              0x0000000105736c27 Finder + 1068071
      10  AppKit                              0x00007fff905b5468 -[NSControl drawRect:] + 341
      11  Finder                              0x000000010567b54c Finder + 300364
      12  AppKit                              0x00007fff905a804f -[NSView _drawRect:clip:] + 3748
      13  AppKit                              0x00007fff905a68c4 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1799
      14  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      15  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      16  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      17  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      18  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      19  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      20  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      21  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      22  AppKit                              0x00007fff90783fd8 -[NSBrowser _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 78
      23  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      24  AppKit                              0x00007fff905a4706 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 841
      25  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      26  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      27  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      28  AppKit                              0x00007fff905a3eb1 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
      29  AppKit                              0x00007fff905a0e9f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2828
      30  AppKit                              0x00007fff905802da -[NSView displayIfNeeded] + 1680
      31  AppKit                              0x00007fff905e574e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
      32  AppKit                              0x00007fff90bbb061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
      33  CoreFoundation                      0x00007fff9101ad67 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
      34  CoreFoundation                      0x00007fff9101acd7 __CFRunLoopDoObservers + 391
      35  CoreFoundation                      0x00007fff9100c3b8 __CFRunLoopRun + 776
      36  CoreFoundation                      0x00007fff9100be75 CFRunLoopRunSpecific + 309
      37  HIToolbox                           0x00007fff97693a0d RunCurrentEventLoopInMode + 226
      38  HIToolbox                           0x00007fff97693685 ReceiveNextEventCommon + 173
      39  HIToolbox                           0x00007fff976935bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
      40  AppKit                              0x00007fff9044924e _DPSNextEvent + 1434
      41  AppKit                              0x00007fff9044889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
      42  AppKit                              0x00007fff906cd1d5 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1164
      43  AppKit                              0x00007fff906cca27 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 487
      44  AppKit                              0x00007fff906cc13d -[NSControl mouseDown:] + 706
      45  AppKit                              0x00007fff90b63831 -[_NSThemeWidget mouseDown:] + 304
      46  AppKit                              0x00007fff9064da58 -[NSWindow sendEvent:] + 11296
      47  AppKit                              0x00007fff905ec5d4 -[NSApplication sendEvent:] + 2021
      48  Finder                              0x0000000105656b35 Finder + 150325
      49  AppKit                              0x00007fff9043c9f9 -[NSApplication run] + 646
      50  AppKit                              0x00007fff90427783 NSApplicationMain + 940
      51  Finder                              0x0000000105638730 Finder + 26416
      52  libdyld.dylib                       0x00007fff96f745fd start + 1
      53  ???                                 0x0000000000000001 0x0 + 1
    Aug 20 14:09:38 Macintosh.local Finder[1429]: -[__NSCFString hasPrefix:]: nil argument
    Aug 20 14:09:38 Macintosh.local Finder[1429]: (
      0   CoreFoundation                      0x00007fff910ea25c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff98a72e75 objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff910ea10c +[NSException raise:format:] + 204
      3   CoreFoundation                      0x00007fff9100332a -[__NSCFString hasPrefix:] + 90
      4   FinderExt                           0x0000000105cd86a3 vLogDebug + 617
      5   Finder                              0x0000000105737fcc Finder + 1073100
      6   Finder                              0x0000000105737f29 Finder + 1072937
      7   Finder                              0x0000000105737407 Finder + 1070087
      8   Finder                              0x0000000105736d5f Finder + 1068383
      9   Finder                              0x0000000105736c27 Finder + 1068071
      10  AppKit                              0x00007fff905b5468 -[NSControl drawRect:] + 341
      11  Finder                              0x000000010567b54c Finder + 300364
      12  AppKit                              0x00007fff905a804f -[NSView _drawRect:clip:] + 3748
      13  AppKit                              0x00007fff905a68c4 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1799
      14  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      15  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      16  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      17  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      18  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      19  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      20  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      21  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      22  AppKit                              0x00007fff90783fd8 -[NSBrowser _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 78
      23  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      24  AppKit                              0x00007fff905a4706 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 841
      25  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      26  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      27  AppKit                              0x00007fff905a5bc4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 6151
      28  AppKit                              0x00007fff905a3eb1 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
      29  AppKit                              0x00007fff905a0e9f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2828
      30  AppKit                              0x00007fff905802da -[NSView displayIfNeeded] + 1680
      31  AppKit                              0x00007fff905e574e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
      32  AppKit                              0x00007fff90bbb061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
      33  CoreFoundation                      0x00007fff9101ad67 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
      34  CoreFoundation                      0x00007fff9101acd7 __CFRunLoopDoObservers + 391
      35  CoreFoundation                      0x00007fff9100c3b8 __CFRunLoopRun + 776
      36  CoreFoundation                      0x00007fff9100be75 CFRunLoopRunSpecific + 309
      37  HIToolbox                           0x00007fff97693a0d RunCurrentEventLoopInMode + 226
      38  HIToolbox                           0x00007fff97693685 ReceiveNextEventCommon + 173
      39  HIToolbox                           0x00007fff976935bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
      40  AppKit                              0x00007fff9044924e _DPSNextEvent + 1434
      41  AppKit                              0x00007fff9044889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
      42  AppKit                              0x00007fff9043c99c -[NSApplication run] + 553
      43  AppKit                              0x00007fff90427783 NSApplicationMain + 940
      44  Finder                              0x0000000105638730 Finder + 26416
      45  libdyld.dylib                       0x00007fff96f745fd start + 1
      46  ???                                 0x0000000000000001 0x0 + 1
    Aug 20 14:09:39 Macintosh.local Finder[1429]: -[__NSCFString hasPrefix:]: nil argument
    Aug 20 14:09:39 Macintosh.local Finder[1429]: (
      0   CoreFoundation                      0x00007fff910ea25c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff98a72e75 objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff910ea10c +[NSException raise:format:] + 204
      3   CoreFoundation                      0x00007fff9100332a -[__NSCFString hasPrefix:] + 90
      4   FinderExt                           0x0000000105cd86a3 vLogDebug + 617
      5   Finder                              0x0000000105737fcc Finder + 1073100
      6   Finder                              0x0000000105737f29 Finder + 1072937
      7   Finder                              0x0000000105737407 Finder + 1070087
      8   Finder                              0x0000000105736d5f Finder + 1068383
      9   Finder                              0x0000000105736c27 Finder + 1068071
      10  AppKit                              0x00007fff905b5468 -[NSControl drawRect:] + 341
      11  Finder                              0x000000010567b54c Finder + 300364
      12  AppKit                              0x00007fff905a804f -[NSView _drawRect:clip:] + 3748
      13  AppKit                              0x00007fff905a68c4 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1799
      14  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      15  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      16  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      17  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      18  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      19  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      20  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      21  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      22  AppKit                              0x00007fff90783fd8 -[NSBrowser _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 78
      23  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      24  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      25  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      26  AppKit                              0x00007fff905a6ca0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2787
      27  AppKit                              0x00007fff905a4706 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 841
      28  AppKit                              0x00007fff905a3eb1 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
      29  AppKit                              0x00007fff905a0e9f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2828
      30  AppKit                              0x00007fff905802da -[NSView displayIfNeeded] + 1680
      31  AppKit                              0x00007fff905e574e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
      32  AppKit                              0x00007fff90bbb061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
      33  CoreFoundation                      0x00007fff9101ad67 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
      34  CoreFoundation                      0x00007fff9101acd7 __CFRunLoopDoObservers + 391
      35  CoreFoundation                      0x00007fff9100c3b8 __CFRunLoopRun + 776
      36  CoreFoundation                      0x00007fff9100be75 CFRunLoopRunSpecific + 309
      37  HIToolbox                           0x00007fff97693a0d RunCurrentEventLoopInMode + 226
      38  HIToolbox                           0x00007fff97693685 ReceiveNextEventCommon + 173
      39  HIToolbox                           0x00007fff976935bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
      40  AppKit                              0x00007fff9044924e _DPSNextEvent + 1434
      41  AppKit                              0x00007fff9044889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
      42  AppKit                         

    Might be Finder preferences are corrupted ...
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Preferences/com.apple.finder.plist
    Click Go then move the com.apple.finder.plist file to the Trash.
    Restart your Mac then try selecting a desktop folder.

Maybe you are looking for

  • Quicktime player has encountered a problem and needs to close.

    Hi, I'm having real problems running QT on my pc. I've tried several combinations eg- 7.02 with Itunes, 7.02 without itunes plus also the last 6.? version. Each time,the programme is fine until it reboots. Then it is unable to open either programme-

  • Human work flow task id

    Hi, In my project i have to create a human work flow for approval. I have created it and auto generated the task form. Now i have to retrive certain values from the database and display it in the task detailspage depending on the task id can u tell m

  • Functions in a Column

    If I am working on a function for a column, eg =IF(ISBLANK(D11),0,1) , but I want to apply it so that each cell auto updates to the same row as the column (the formula is in column E and I want E11 to look at D11, E12 to look at D12, etc) how do I do

  • Need help in developing mobile app using SAP

    Hi I have a team of Android, iOS and Windows developers and we are planning to start developing mobile using SAP and SAP Fiori. Need help in getting started with SAP mobile development like i need plugins and development kits that i need to use. Than

  • Can we post zero dollar invoice (AP)

    Hi I have come across a weired situation. We need to clear the GRIR balance and to clear the quantity, we want to process the dummy invoice with zero dollar.Is it possible ? My system does not allow that. Thanks in advance