본문 바로가기
반응형

#컴퓨터 과학 [Computer Science]/운영체제 (Operating System)49

[OS - 🍎 macOS] 파일 공유 폴더 목록 가져오는 방법 (How to get list of shared folders) macOS 환경에서 파일 공유 폴더 목록을 가져오는 방법은 아래와 같습니다. ※ Xcode 프로젝트에서 Frameworks, Libraries, and Embedded Content 항목에 OpenDirectory.framework를 추가하여야 사용이 가능합니다. 🗂️ 파일 공유 폴더 목록가져오기 (Objective-C) #import @autoreleasepool { NSMutableDictionary * dictionary = [NSMutableDictionary new]; NSError * error = NULL; ODNode * localNode = [ODNode nodeWithSession: ODSession.defaultSession type: ODNodeType(kODNodeTypeLocal.. 2023. 10. 31.
[OS - 🍎 macOS] 터미널을 통한 파일 공유 (File Sharing) 설정 방법 터미널에서 /usr/sbin/sharing 관리 명령을 통한 파일 공유 설정 방법은 아래와 같습니다. 🗂️ 파일 공유 (File Sharing) 폴더 추가하기 /usr/sbin/sharing -r [Path] 🗂️ 파일 공유 (File Sharing) 폴더 삭제하기 /usr/sbin/sharing -r [Share Point Name] ※ 공유 폴더 목록에서 특정 폴더를 공유 해제를 하기 위해서는 경로를 입력하는 것이 아닌 값을 입력하여야 합니다. 아래의 예시처럼 osquery-5.9.1 부분을 입력하여야 합니다. "osquery-5.9.1" : { "path" : "\/Users\/~\/Downloads\/osquery-5.9.1", "smb_guest_access" : 1, "smb_name" : ".. 2023. 10. 23.
[OS - 🍎 macOS] 애플 스크립트를 통한 AirDrop 통제 (Controlling AirDrop through AppleScript) 애플 스크립트 (AppleScript) 사용하여 AirDrop을 통제하는 방법은 아래와 같습니다. #!/usr/bin/osascript # Copyright (c) 2023 ChangYeop-Yang. All rights reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, .. 2023. 9. 25.
[OS - 🍎 macOS] DistributedNotificationCenter 카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 Operating System 2023.08.30. 22:08 2023.08.30. 22:08 Dev.Yang 📣 DistributedNotificationCenter DistributedNotificationCenter는 macOS 운영체제에서만 사용되는 알림 구조의 일부로 다른 프로세스들에 알림을 전송 또는 수신을 할 수 있습니다. 또한 NSNotification의 확장 된 형태로 다른 작업의 객체로 브로드 캐스트 기능이 추가 되었습니다. DistributedNotificationCenter의 주요 기능은 아래와 같습니다. ※ 알림 등록 및 제거 (Managing Observers) addObserver (_:selector:name:objec.. 2023. 8. 30.
반응형