func (service *Service) StoreEdgeStackFileFromBytes(edgeStackIdentifier, fileName string, data []byte) (string, error) {
    stackStorePath := JoinPaths(EdgeStackStorePath, edgeStackIdentifier)
    err := service.createDirectoryInStore(stackStorePath)
    if err != nil {
        return "", err